#[non_exhaustive]pub struct BulkZoneSetLabelsRequest {
pub requests: Vec<BulkSetLabelsRequest>,
/* private fields */
}Available on crate feature
disks only.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.requests: Vec<BulkSetLabelsRequest>Implementations§
Source§impl BulkZoneSetLabelsRequest
impl BulkZoneSetLabelsRequest
pub fn new() -> Self
Sourcepub fn set_requests<T, V>(self, v: T) -> Self
pub fn set_requests<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for BulkZoneSetLabelsRequest
impl Clone for BulkZoneSetLabelsRequest
Source§fn clone(&self) -> BulkZoneSetLabelsRequest
fn clone(&self) -> BulkZoneSetLabelsRequest
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 BulkZoneSetLabelsRequest
impl Debug for BulkZoneSetLabelsRequest
Source§impl Default for BulkZoneSetLabelsRequest
impl Default for BulkZoneSetLabelsRequest
Source§fn default() -> BulkZoneSetLabelsRequest
fn default() -> BulkZoneSetLabelsRequest
Returns the “default value” for a type. Read more
Source§impl Message for BulkZoneSetLabelsRequest
impl Message for BulkZoneSetLabelsRequest
Source§impl PartialEq for BulkZoneSetLabelsRequest
impl PartialEq for BulkZoneSetLabelsRequest
impl StructuralPartialEq for BulkZoneSetLabelsRequest
Auto Trait Implementations§
impl Freeze for BulkZoneSetLabelsRequest
impl RefUnwindSafe for BulkZoneSetLabelsRequest
impl Send for BulkZoneSetLabelsRequest
impl Sync for BulkZoneSetLabelsRequest
impl Unpin for BulkZoneSetLabelsRequest
impl UnwindSafe for BulkZoneSetLabelsRequest
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