pub struct InvitationStage {
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 continue_flow_without_invitation: Option<bool>,
}
Expand description
InvitationStage : InvitationStage 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>>
§continue_flow_without_invitation: Option<bool>
If this flag is set, this Stage will jump to the next Stage when no Invitation is given. By default this Stage will cancel the Flow when no invitation is given.
Implementations§
Trait Implementations§
Source§impl Clone for InvitationStage
impl Clone for InvitationStage
Source§fn clone(&self) -> InvitationStage
fn clone(&self) -> InvitationStage
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 InvitationStage
impl Debug for InvitationStage
Source§impl Default for InvitationStage
impl Default for InvitationStage
Source§fn default() -> InvitationStage
fn default() -> InvitationStage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InvitationStage
impl<'de> Deserialize<'de> for InvitationStage
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 InvitationStage
impl PartialEq for InvitationStage
Source§impl Serialize for InvitationStage
impl Serialize for InvitationStage
impl StructuralPartialEq for InvitationStage
Auto Trait Implementations§
impl Freeze for InvitationStage
impl RefUnwindSafe for InvitationStage
impl Send for InvitationStage
impl Sync for InvitationStage
impl Unpin for InvitationStage
impl UnwindSafe for InvitationStage
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