pub struct SourceStage {
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 source: Uuid,
pub resume_timeout: Option<String>,
}Expand description
SourceStage : SourceStage Serializer
Fields§
§pk: Uuid§name: String§component: StringGet object type so that we know how to edit the object
verbose_name: StringReturn object’s verbose_name
verbose_name_plural: StringReturn object’s plural verbose_name
meta_model_name: StringReturn internal model name
flow_set: Option<Vec<FlowSet>>§source: Uuid§resume_timeout: Option<String>Amount of time a user can take to return from the source to continue the flow (Format: hours=-1;minutes=-2;seconds=-3)
Implementations§
Trait Implementations§
Source§impl Clone for SourceStage
impl Clone for SourceStage
Source§fn clone(&self) -> SourceStage
fn clone(&self) -> SourceStage
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 SourceStage
impl Debug for SourceStage
Source§impl Default for SourceStage
impl Default for SourceStage
Source§fn default() -> SourceStage
fn default() -> SourceStage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceStage
impl<'de> Deserialize<'de> for SourceStage
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 SourceStage
impl PartialEq for SourceStage
Source§impl Serialize for SourceStage
impl Serialize for SourceStage
impl StructuralPartialEq for SourceStage
Auto Trait Implementations§
impl Freeze for SourceStage
impl RefUnwindSafe for SourceStage
impl Send for SourceStage
impl Sync for SourceStage
impl Unpin for SourceStage
impl UnwindSafe for SourceStage
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