pub struct AddCardParams {
pub nodegroup_id: String,
pub name: StaticTranslatableString,
pub component_id: Option<String>,
pub options: CardOptions,
pub config: Option<Value>,
}Expand description
Parameters for adding a card
Fields§
§nodegroup_id: String§name: StaticTranslatableString§component_id: Option<String>§options: CardOptions§config: Option<Value>Trait Implementations§
Source§impl Clone for AddCardParams
impl Clone for AddCardParams
Source§fn clone(&self) -> AddCardParams
fn clone(&self) -> AddCardParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AddCardParams
impl Debug for AddCardParams
Source§impl<'de> Deserialize<'de> for AddCardParams
impl<'de> Deserialize<'de> for AddCardParams
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 Freeze for AddCardParams
impl RefUnwindSafe for AddCardParams
impl Send for AddCardParams
impl Sync for AddCardParams
impl Unpin for AddCardParams
impl UnsafeUnpin for AddCardParams
impl UnwindSafe for AddCardParams
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