pub struct WorkflowObject {
pub name: String,
pub user_id: Uuid,
pub description: Option<String>,
pub _ref: WorkflowObjectRef,
}
Expand description
Fields§
§name: String
§user_id: Uuid
§description: Option<String>
§_ref: WorkflowObjectRef
Implementations§
Source§impl WorkflowObject
impl WorkflowObject
pub fn new( name: String, user_id: Uuid, _ref: WorkflowObjectRef, ) -> WorkflowObject
Trait Implementations§
Source§impl Clone for WorkflowObject
impl Clone for WorkflowObject
Source§fn clone(&self) -> WorkflowObject
fn clone(&self) -> WorkflowObject
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 WorkflowObject
impl Debug for WorkflowObject
Source§impl<'de> Deserialize<'de> for WorkflowObject
impl<'de> Deserialize<'de> for WorkflowObject
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 WorkflowObject
impl PartialEq for WorkflowObject
Source§impl Serialize for WorkflowObject
impl Serialize for WorkflowObject
impl StructuralPartialEq for WorkflowObject
Auto Trait Implementations§
impl Freeze for WorkflowObject
impl RefUnwindSafe for WorkflowObject
impl Send for WorkflowObject
impl Sync for WorkflowObject
impl Unpin for WorkflowObject
impl UnwindSafe for WorkflowObject
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