pub struct FullTypeEnumValues {
pub name: Option<String>,
pub description: Option<String>,
pub is_deprecated: Option<bool>,
pub deprecation_reason: Option<String>,
}
Fields§
§name: Option<String>
§description: Option<String>
§is_deprecated: Option<bool>
§deprecation_reason: Option<String>
Trait Implementations§
Source§impl Clone for FullTypeEnumValues
impl Clone for FullTypeEnumValues
Source§fn clone(&self) -> FullTypeEnumValues
fn clone(&self) -> FullTypeEnumValues
Returns a copy 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 FullTypeEnumValues
impl Debug for FullTypeEnumValues
Source§impl<'de> Deserialize<'de> for FullTypeEnumValues
impl<'de> Deserialize<'de> for FullTypeEnumValues
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
Auto Trait Implementations§
impl Freeze for FullTypeEnumValues
impl RefUnwindSafe for FullTypeEnumValues
impl Send for FullTypeEnumValues
impl Sync for FullTypeEnumValues
impl Unpin for FullTypeEnumValues
impl UnwindSafe for FullTypeEnumValues
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