#[non_exhaustive]pub struct ListBatchesRequest {
pub name: Option<String>,
pub filter: Option<String>,
pub page_size: Option<i32>,
pub page_token: Option<String>,
pub return_partial_success: Option<bool>,
pub extra: ExtraFields,
}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.name: Option<String>§filter: Option<String>§page_size: Option<i32>§page_token: Option<String>§return_partial_success: Option<bool>§extra: ExtraFieldsImplementations§
Trait Implementations§
Source§impl Clone for ListBatchesRequest
impl Clone for ListBatchesRequest
Source§fn clone(&self) -> ListBatchesRequest
fn clone(&self) -> ListBatchesRequest
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 ListBatchesRequest
impl Debug for ListBatchesRequest
Source§impl Default for ListBatchesRequest
impl Default for ListBatchesRequest
Source§fn default() -> ListBatchesRequest
fn default() -> ListBatchesRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBatchesRequest
impl<'de> Deserialize<'de> for ListBatchesRequest
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
Source§impl PartialEq for ListBatchesRequest
impl PartialEq for ListBatchesRequest
Source§impl Serialize for ListBatchesRequest
impl Serialize for ListBatchesRequest
impl StructuralPartialEq for ListBatchesRequest
Auto Trait Implementations§
impl Freeze for ListBatchesRequest
impl RefUnwindSafe for ListBatchesRequest
impl Send for ListBatchesRequest
impl Sync for ListBatchesRequest
impl Unpin for ListBatchesRequest
impl UnsafeUnpin for ListBatchesRequest
impl UnwindSafe for ListBatchesRequest
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