#[non_exhaustive]pub struct FlagsListResponse {
pub kind: String,
pub items: Vec<Flag>,
/* private fields */
}
Expand description
Flags list response.
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.kind: String
This is always sql#flagsList
.
items: Vec<Flag>
List of flags.
Implementations§
Trait Implementations§
Source§impl Clone for FlagsListResponse
impl Clone for FlagsListResponse
Source§fn clone(&self) -> FlagsListResponse
fn clone(&self) -> FlagsListResponse
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 FlagsListResponse
impl Debug for FlagsListResponse
Source§impl Default for FlagsListResponse
impl Default for FlagsListResponse
Source§fn default() -> FlagsListResponse
fn default() -> FlagsListResponse
Returns the “default value” for a type. Read more
Source§impl Message for FlagsListResponse
impl Message for FlagsListResponse
Source§impl PartialEq for FlagsListResponse
impl PartialEq for FlagsListResponse
impl StructuralPartialEq for FlagsListResponse
Auto Trait Implementations§
impl Freeze for FlagsListResponse
impl RefUnwindSafe for FlagsListResponse
impl Send for FlagsListResponse
impl Sync for FlagsListResponse
impl Unpin for FlagsListResponse
impl UnwindSafe for FlagsListResponse
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