pub struct SdkParticipantRequestTooLarge {
pub conversation_id: ConversationId,
pub encoded_bytes: u64,
pub limit: u64,
}Expand description
Complete SDK-local participant request exceeded min(R, WF).
Fields§
§conversation_id: ConversationIdConversation named by the unsent request.
encoded_bytes: u64Complete encoded participant request bytes.
limit: u64Exact signed effective request limit R_send.
Trait Implementations§
Source§impl Clone for SdkParticipantRequestTooLarge
impl Clone for SdkParticipantRequestTooLarge
Source§fn clone(&self) -> SdkParticipantRequestTooLarge
fn clone(&self) -> SdkParticipantRequestTooLarge
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 moreimpl Copy for SdkParticipantRequestTooLarge
impl Eq for SdkParticipantRequestTooLarge
impl StructuralPartialEq for SdkParticipantRequestTooLarge
Auto Trait Implementations§
impl Freeze for SdkParticipantRequestTooLarge
impl RefUnwindSafe for SdkParticipantRequestTooLarge
impl Send for SdkParticipantRequestTooLarge
impl Sync for SdkParticipantRequestTooLarge
impl Unpin for SdkParticipantRequestTooLarge
impl UnsafeUnpin for SdkParticipantRequestTooLarge
impl UnwindSafe for SdkParticipantRequestTooLarge
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