pub struct Response200 {Show 17 fields
pub debug: bool,
pub app_name: CompactString,
pub uuid: Uuid,
pub token_id: CompactString,
pub token: CompactString,
pub api: Response200Api,
pub system: Response200System,
pub docker: Response200Docker,
pub throttles: Response200Throttles,
pub remote: CompactString,
pub remote_headers: IndexMap<CompactString, CompactString>,
pub remote_query: Response200RemoteQuery,
pub allowed_mounts: Vec<CompactString>,
pub allowed_origins: Vec<CompactString>,
pub allow_cors_private_network: bool,
pub ignore_panel_config_updates: bool,
pub ignore_panel_wings_upgrades: bool,
}Fields§
§debug: bool§app_name: CompactString§uuid: Uuid§token_id: CompactString§token: CompactString§api: Response200Api§system: Response200System§docker: Response200Docker§throttles: Response200Throttles§remote: CompactString§remote_headers: IndexMap<CompactString, CompactString>§remote_query: Response200RemoteQuery§allowed_mounts: Vec<CompactString>§allowed_origins: Vec<CompactString>§allow_cors_private_network: bool§ignore_panel_config_updates: bool§ignore_panel_wings_upgrades: boolTrait Implementations§
Source§impl Clone for Response200
impl Clone for Response200
Source§fn clone(&self) -> Response200
fn clone(&self) -> Response200
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for Response200
impl ComposeSchema for Response200
Source§impl Debug for Response200
impl Debug for Response200
Source§impl<'de> Deserialize<'de> for Response200
impl<'de> Deserialize<'de> for Response200
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Response200
impl Serialize for Response200
Auto Trait Implementations§
impl Freeze for Response200
impl RefUnwindSafe for Response200
impl Send for Response200
impl Sync for Response200
impl Unpin for Response200
impl UnwindSafe for Response200
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more