pub struct TypeCreate {
pub name: String,
pub description: String,
pub component: String,
pub model_name: String,
pub requires_enterprise: Option<bool>,
}
Expand description
TypeCreate : Types of an object that can be created
Fields§
§name: String
§description: String
§component: String
§model_name: String
§requires_enterprise: Option<bool>
Implementations§
Source§impl TypeCreate
impl TypeCreate
Trait Implementations§
Source§impl Clone for TypeCreate
impl Clone for TypeCreate
Source§fn clone(&self) -> TypeCreate
fn clone(&self) -> TypeCreate
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 TypeCreate
impl Debug for TypeCreate
Source§impl Default for TypeCreate
impl Default for TypeCreate
Source§fn default() -> TypeCreate
fn default() -> TypeCreate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TypeCreate
impl<'de> Deserialize<'de> for TypeCreate
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 PartialEq for TypeCreate
impl PartialEq for TypeCreate
Source§impl Serialize for TypeCreate
impl Serialize for TypeCreate
impl StructuralPartialEq for TypeCreate
Auto Trait Implementations§
impl Freeze for TypeCreate
impl RefUnwindSafe for TypeCreate
impl Send for TypeCreate
impl Sync for TypeCreate
impl Unpin for TypeCreate
impl UnwindSafe for TypeCreate
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