[][src]Struct kf_protocol::message::group::KfSyncGroupRequest

pub struct KfSyncGroupRequest {
    pub group_id: String,
    pub generation_id: i32,
    pub member_id: String,
    pub assignments: Vec<SyncGroupRequestAssignment>,
}

Fields

group_id: String

The unique group identifier.

generation_id: i32

The generation of the group.

member_id: String

The member ID assigned by the group.

assignments: Vec<SyncGroupRequestAssignment>

Each assignment.

Trait Implementations

impl Debug for KfSyncGroupRequest[src]

impl Decoder for KfSyncGroupRequest[src]

impl Default for KfSyncGroupRequest[src]

impl<'de> Deserialize<'de> for KfSyncGroupRequest[src]

impl Encoder for KfSyncGroupRequest[src]

impl Request for KfSyncGroupRequest[src]

impl Serialize for KfSyncGroupRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.