pub struct TypeConfig {
pub name: String,
pub identifier: IdStrategy,
pub features: TypeFeatures,
pub statuses: Vec<String>,
pub default_status: Option<String>,
pub priority_levels: Option<u32>,
pub custom_fields: Vec<CustomFieldDef>,
}Fields§
§name: String§identifier: IdStrategy§features: TypeFeatures§statuses: Vec<String>§default_status: Option<String>§priority_levels: Option<u32>§custom_fields: Vec<CustomFieldDef>Trait Implementations§
Source§impl Clone for TypeConfig
impl Clone for TypeConfig
Source§fn clone(&self) -> TypeConfig
fn clone(&self) -> TypeConfig
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 TypeConfig
impl Debug for TypeConfig
Source§impl<'de> Deserialize<'de> for TypeConfig
impl<'de> Deserialize<'de> for TypeConfig
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 TypeConfig
impl RefUnwindSafe for TypeConfig
impl Send for TypeConfig
impl Sync for TypeConfig
impl Unpin for TypeConfig
impl UnsafeUnpin for TypeConfig
impl UnwindSafe for TypeConfig
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