pub struct TriggerExtraProperty {
pub path: String,
pub script_path: String,
pub email: String,
pub extra_perms: HashMap<String, bool>,
pub workspace_id: String,
pub edited_by: String,
pub edited_at: String,
pub is_flow: bool,
}
Fields§
§path: String
§script_path: String
§email: String
§extra_perms: HashMap<String, bool>
§workspace_id: String
§edited_by: String
§edited_at: String
§is_flow: bool
Implementations§
Trait Implementations§
Source§impl Clone for TriggerExtraProperty
impl Clone for TriggerExtraProperty
Source§fn clone(&self) -> TriggerExtraProperty
fn clone(&self) -> TriggerExtraProperty
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 TriggerExtraProperty
impl Debug for TriggerExtraProperty
Source§impl Default for TriggerExtraProperty
impl Default for TriggerExtraProperty
Source§fn default() -> TriggerExtraProperty
fn default() -> TriggerExtraProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TriggerExtraProperty
impl<'de> Deserialize<'de> for TriggerExtraProperty
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 TriggerExtraProperty
impl PartialEq for TriggerExtraProperty
Source§impl Serialize for TriggerExtraProperty
impl Serialize for TriggerExtraProperty
impl StructuralPartialEq for TriggerExtraProperty
Auto Trait Implementations§
impl Freeze for TriggerExtraProperty
impl RefUnwindSafe for TriggerExtraProperty
impl Send for TriggerExtraProperty
impl Sync for TriggerExtraProperty
impl Unpin for TriggerExtraProperty
impl UnwindSafe for TriggerExtraProperty
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