pub struct ExtensibleZZZ {
pub base_type: Option<String>,
pub schema_location: Option<String>,
pub type_: String,
}Expand description
Base Extensible schema for use in TMForum Open-APIs - When used for in a schema it means that the Entity described by the schema MUST be extended with the @type
Fields§
§base_type: Option<String>When sub-classing, this defines the super-class
schema_location: Option<String>A URI to a JSON-Schema file that defines additional attributes and relationships
type_: StringWhen sub-classing, this defines the sub-class Extensible name
Trait Implementations§
Source§impl Clone for ExtensibleZZZ
impl Clone for ExtensibleZZZ
Source§fn clone(&self) -> ExtensibleZZZ
fn clone(&self) -> ExtensibleZZZ
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 ExtensibleZZZ
impl Debug for ExtensibleZZZ
Source§impl Default for ExtensibleZZZ
impl Default for ExtensibleZZZ
Source§fn default() -> ExtensibleZZZ
fn default() -> ExtensibleZZZ
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExtensibleZZZ
impl<'de> Deserialize<'de> for ExtensibleZZZ
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 Display for ExtensibleZZZ
impl Display for ExtensibleZZZ
Auto Trait Implementations§
impl Freeze for ExtensibleZZZ
impl RefUnwindSafe for ExtensibleZZZ
impl Send for ExtensibleZZZ
impl Sync for ExtensibleZZZ
impl Unpin for ExtensibleZZZ
impl UnsafeUnpin for ExtensibleZZZ
impl UnwindSafe for ExtensibleZZZ
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