Struct alfresco_sdk::models::structs::ActionDefinition
source · pub struct ActionDefinition {
pub id: String,
pub name: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub applicable_types: Vec<String>,
pub track_status: bool,
pub parameter_definitions: Option<Vec<ActionParameterDefinition>>,
}
Fields§
§id: String
§name: Option<String>
§title: Option<String>
§description: Option<String>
§applicable_types: Vec<String>
§track_status: bool
§parameter_definitions: Option<Vec<ActionParameterDefinition>>
Trait Implementations§
source§impl Clone for ActionDefinition
impl Clone for ActionDefinition
source§fn clone(&self) -> ActionDefinition
fn clone(&self) -> ActionDefinition
Returns a copy 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 ActionDefinition
impl Debug for ActionDefinition
source§impl<'de> Deserialize<'de> for ActionDefinition
impl<'de> Deserialize<'de> for ActionDefinition
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
Auto Trait Implementations§
impl RefUnwindSafe for ActionDefinition
impl Send for ActionDefinition
impl Sync for ActionDefinition
impl Unpin for ActionDefinition
impl UnwindSafe for ActionDefinition
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