#[non_exhaustive]pub struct MultiTarget {
pub target_ids: Vec<String>,
/* private fields */
}
Expand description
Information specifying a multiTarget.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.target_ids: Vec<String>
Required. The target_ids of this multiTarget.
Implementations§
Source§impl MultiTarget
impl MultiTarget
pub fn new() -> Self
Sourcepub fn set_target_ids<T, V>(self, v: T) -> Self
pub fn set_target_ids<T, V>(self, v: T) -> Self
Sets the value of target_ids.
Trait Implementations§
Source§impl Clone for MultiTarget
impl Clone for MultiTarget
Source§fn clone(&self) -> MultiTarget
fn clone(&self) -> MultiTarget
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 MultiTarget
impl Debug for MultiTarget
Source§impl Default for MultiTarget
impl Default for MultiTarget
Source§fn default() -> MultiTarget
fn default() -> MultiTarget
Returns the “default value” for a type. Read more
Source§impl Message for MultiTarget
impl Message for MultiTarget
Source§impl PartialEq for MultiTarget
impl PartialEq for MultiTarget
impl StructuralPartialEq for MultiTarget
Auto Trait Implementations§
impl Freeze for MultiTarget
impl RefUnwindSafe for MultiTarget
impl Send for MultiTarget
impl Sync for MultiTarget
impl Unpin for MultiTarget
impl UnwindSafe for MultiTarget
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