pub enum CapabilityLimitField {
AttachReceiptTtlMs,
ReceiptProvenanceTtlMs,
MaxLiveAttachReceiptsServer,
MaxLiveAttachReceiptsPerParticipant,
MaxReceiptProvenanceServer,
MaxReceiptProvenancePerConversation,
MaxReceiptProvenancePerParticipant,
MaxRetiredIdentitySlotsServer,
MaxRetiredIdentitySlotsPerConversation,
}Expand description
Receipt/identity configuration field subject to the nonzero check.
Variants§
AttachReceiptTtlMs
Attach-receipt lifetime in milliseconds.
ReceiptProvenanceTtlMs
Receipt-provenance lifetime in milliseconds.
MaxLiveAttachReceiptsServer
Server-wide live attach-receipt capacity.
MaxLiveAttachReceiptsPerParticipant
Per-participant live attach-receipt capacity.
MaxReceiptProvenanceServer
Server-wide receipt-provenance capacity.
MaxReceiptProvenancePerConversation
Per-conversation receipt-provenance capacity.
MaxReceiptProvenancePerParticipant
Per-participant receipt-provenance capacity.
MaxRetiredIdentitySlotsServer
Server-wide retired identity-slot capacity.
MaxRetiredIdentitySlotsPerConversation
Per-conversation retired identity-slot capacity.
Trait Implementations§
Source§impl Clone for CapabilityLimitField
impl Clone for CapabilityLimitField
Source§fn clone(&self) -> CapabilityLimitField
fn clone(&self) -> CapabilityLimitField
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 CapabilityLimitField
Source§impl Debug for CapabilityLimitField
impl Debug for CapabilityLimitField
impl Eq for CapabilityLimitField
Source§impl PartialEq for CapabilityLimitField
impl PartialEq for CapabilityLimitField
impl StructuralPartialEq for CapabilityLimitField
Auto Trait Implementations§
impl Freeze for CapabilityLimitField
impl RefUnwindSafe for CapabilityLimitField
impl Send for CapabilityLimitField
impl Sync for CapabilityLimitField
impl Unpin for CapabilityLimitField
impl UnsafeUnpin for CapabilityLimitField
impl UnwindSafe for CapabilityLimitField
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