pub enum ChildrenStatusValue {
No,
Yes,
}Variants§
Implementations§
Trait Implementations§
Source§impl ApiEnum for ChildrenStatusValue
impl ApiEnum for ChildrenStatusValue
fn to_api_value(&self) -> i8
fn from_string(s: &str) -> Option<Self>
Source§impl Clone for ChildrenStatusValue
impl Clone for ChildrenStatusValue
Source§fn clone(&self) -> ChildrenStatusValue
fn clone(&self) -> ChildrenStatusValue
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 ChildrenStatusValue
impl Debug for ChildrenStatusValue
Source§impl<'de> Deserialize<'de> for ChildrenStatusValue
impl<'de> Deserialize<'de> for ChildrenStatusValue
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 From<ChildrenStatusValue> for ChildrenStatusPreference
impl From<ChildrenStatusValue> for ChildrenStatusPreference
Source§fn from(value: ChildrenStatusValue) -> Self
fn from(value: ChildrenStatusValue) -> Self
Converts to this type from the input type.
Source§impl From<ChildrenStatusValue> for ChildrenStatusProfile
impl From<ChildrenStatusValue> for ChildrenStatusProfile
Source§fn from(value: ChildrenStatusValue) -> Self
fn from(value: ChildrenStatusValue) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for ChildrenStatusValue
impl JsonSchema for ChildrenStatusValue
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 ChildrenStatusValue
impl PartialEq for ChildrenStatusValue
Source§impl Serialize for ChildrenStatusValue
impl Serialize for ChildrenStatusValue
impl StructuralPartialEq for ChildrenStatusValue
Auto Trait Implementations§
impl Freeze for ChildrenStatusValue
impl RefUnwindSafe for ChildrenStatusValue
impl Send for ChildrenStatusValue
impl Sync for ChildrenStatusValue
impl Unpin for ChildrenStatusValue
impl UnsafeUnpin for ChildrenStatusValue
impl UnwindSafe for ChildrenStatusValue
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