pub struct ParentRouteStatus {
pub conditions: Option<Vec<Condition>>,
pub controller_name: String,
pub parent_ref: ParentReference,
}Fields§
§conditions: Option<Vec<Condition>>§controller_name: String§parent_ref: ParentReferenceTrait Implementations§
Source§impl Clone for ParentRouteStatus
impl Clone for ParentRouteStatus
Source§fn clone(&self) -> ParentRouteStatus
fn clone(&self) -> ParentRouteStatus
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 Debug for ParentRouteStatus
impl Debug for ParentRouteStatus
Source§impl Default for ParentRouteStatus
impl Default for ParentRouteStatus
Source§fn default() -> ParentRouteStatus
fn default() -> ParentRouteStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParentRouteStatus
impl<'de> Deserialize<'de> for ParentRouteStatus
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 JsonSchema for ParentRouteStatus
impl JsonSchema for ParentRouteStatus
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for ParentRouteStatus
impl PartialEq for ParentRouteStatus
Source§impl Serialize for ParentRouteStatus
impl Serialize for ParentRouteStatus
impl StructuralPartialEq for ParentRouteStatus
Auto Trait Implementations§
impl Freeze for ParentRouteStatus
impl RefUnwindSafe for ParentRouteStatus
impl Send for ParentRouteStatus
impl Sync for ParentRouteStatus
impl Unpin for ParentRouteStatus
impl UnwindSafe for ParentRouteStatus
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