pub struct ListGroupsRequest {
pub states_filter: Vec<String>,
pub types_filter: Vec<String>,
pub unknown_tagged_fields: UnknownTaggedFields,
}Fields§
§states_filter: Vec<String>§types_filter: Vec<String>§unknown_tagged_fields: UnknownTaggedFieldsTrait Implementations§
Source§impl Clone for ListGroupsRequest
impl Clone for ListGroupsRequest
Source§fn clone(&self) -> ListGroupsRequest
fn clone(&self) -> ListGroupsRequest
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 ListGroupsRequest
impl Debug for ListGroupsRequest
Source§impl Decode<'_> for ListGroupsRequest
impl Decode<'_> for ListGroupsRequest
Source§impl Default for ListGroupsRequest
impl Default for ListGroupsRequest
Source§fn default() -> ListGroupsRequest
fn default() -> ListGroupsRequest
Returns the “default value” for a type. Read more
Source§impl Encode for ListGroupsRequest
impl Encode for ListGroupsRequest
impl Eq for ListGroupsRequest
Source§impl PartialEq for ListGroupsRequest
impl PartialEq for ListGroupsRequest
Source§fn eq(&self, other: &ListGroupsRequest) -> bool
fn eq(&self, other: &ListGroupsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ProtocolRequest for ListGroupsRequest
impl ProtocolRequest for ListGroupsRequest
Source§const MIN_VERSION: i16 = MIN_VERSION
const MIN_VERSION: i16 = MIN_VERSION
Minimum protocol version this Rust type supports.
Source§const MAX_VERSION: i16 = MAX_VERSION
const MAX_VERSION: i16 = MAX_VERSION
Maximum protocol version this Rust type supports.
Source§const FLEXIBLE_MIN: i16 = FLEXIBLE_MIN
const FLEXIBLE_MIN: i16 = FLEXIBLE_MIN
First version that uses flexible (KIP-482) framing.
i16::MAX for never-flexible messages.Source§type Response = ListGroupsResponse
type Response = ListGroupsResponse
Matching response type from
crabka-protocol.impl StructuralPartialEq for ListGroupsRequest
Auto Trait Implementations§
impl Freeze for ListGroupsRequest
impl RefUnwindSafe for ListGroupsRequest
impl Send for ListGroupsRequest
impl Sync for ListGroupsRequest
impl Unpin for ListGroupsRequest
impl UnsafeUnpin for ListGroupsRequest
impl UnwindSafe for ListGroupsRequest
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