pub struct TargetAttachToTargetParams {
pub target_id: String,
pub flatten: Option<bool>,
}Expand description
Typed params for Target.attachToTarget.
Fields§
§target_id: StringTarget id to attach to.
flatten: Option<bool>Whether the attachment should be flattened.
Trait Implementations§
Source§impl Clone for TargetAttachToTargetParams
impl Clone for TargetAttachToTargetParams
Source§fn clone(&self) -> TargetAttachToTargetParams
fn clone(&self) -> TargetAttachToTargetParams
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 Command for TargetAttachToTargetParams
impl Command for TargetAttachToTargetParams
Source§type Params = TargetAttachToTargetParams
type Params = TargetAttachToTargetParams
Command parameters.
Source§type Output = TargetAttachToTargetResult
type Output = TargetAttachToTargetResult
Command result.
Source§impl Debug for TargetAttachToTargetParams
impl Debug for TargetAttachToTargetParams
Source§impl<'de> Deserialize<'de> for TargetAttachToTargetParams
impl<'de> Deserialize<'de> for TargetAttachToTargetParams
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
impl Eq for TargetAttachToTargetParams
impl StructuralPartialEq for TargetAttachToTargetParams
Auto Trait Implementations§
impl Freeze for TargetAttachToTargetParams
impl RefUnwindSafe for TargetAttachToTargetParams
impl Send for TargetAttachToTargetParams
impl Sync for TargetAttachToTargetParams
impl Unpin for TargetAttachToTargetParams
impl UnsafeUnpin for TargetAttachToTargetParams
impl UnwindSafe for TargetAttachToTargetParams
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