pub struct SelectableStage {
pub pk: Uuid,
pub name: String,
pub verbose_name: String,
pub meta_model_name: String,
}
Expand description
SelectableStage : Serializer for stages which can be selected by users
Fields§
§pk: Uuid
§name: String
§verbose_name: String
§meta_model_name: String
Implementations§
Trait Implementations§
Source§impl Clone for SelectableStage
impl Clone for SelectableStage
Source§fn clone(&self) -> SelectableStage
fn clone(&self) -> SelectableStage
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 SelectableStage
impl Debug for SelectableStage
Source§impl Default for SelectableStage
impl Default for SelectableStage
Source§fn default() -> SelectableStage
fn default() -> SelectableStage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SelectableStage
impl<'de> Deserialize<'de> for SelectableStage
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 SelectableStage
impl PartialEq for SelectableStage
Source§impl Serialize for SelectableStage
impl Serialize for SelectableStage
impl StructuralPartialEq for SelectableStage
Auto Trait Implementations§
impl Freeze for SelectableStage
impl RefUnwindSafe for SelectableStage
impl Send for SelectableStage
impl Sync for SelectableStage
impl Unpin for SelectableStage
impl UnwindSafe for SelectableStage
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