pub struct DummyStage {
pub pk: Uuid,
pub name: String,
pub component: String,
pub verbose_name: String,
pub verbose_name_plural: String,
pub meta_model_name: String,
pub flow_set: Option<Vec<FlowSet>>,
pub throw_error: Option<bool>,
}
Expand description
DummyStage : DummyStage Serializer
Fields§
§pk: Uuid
§name: String
§component: String
Get object type so that we know how to edit the object
verbose_name: String
Return object’s verbose_name
verbose_name_plural: String
Return object’s plural verbose_name
meta_model_name: String
Return internal model name
flow_set: Option<Vec<FlowSet>>
§throw_error: Option<bool>
Implementations§
Trait Implementations§
Source§impl Clone for DummyStage
impl Clone for DummyStage
Source§fn clone(&self) -> DummyStage
fn clone(&self) -> DummyStage
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 DummyStage
impl Debug for DummyStage
Source§impl Default for DummyStage
impl Default for DummyStage
Source§fn default() -> DummyStage
fn default() -> DummyStage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DummyStage
impl<'de> Deserialize<'de> for DummyStage
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 DummyStage
impl PartialEq for DummyStage
Source§impl Serialize for DummyStage
impl Serialize for DummyStage
impl StructuralPartialEq for DummyStage
Auto Trait Implementations§
impl Freeze for DummyStage
impl RefUnwindSafe for DummyStage
impl Send for DummyStage
impl Sync for DummyStage
impl Unpin for DummyStage
impl UnwindSafe for DummyStage
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