pub struct FixedOutgoingAssemblyTable<const MAX_OUTGOING_ASSEMBLIES: usize> { /* private fields */ }Trait Implementations§
Source§impl<const MAX_OUTGOING_ASSEMBLIES: usize> Debug for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> Debug for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
Source§impl<const MAX_OUTGOING_ASSEMBLIES: usize> Default for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> Default for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
Source§fn default() -> FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
fn default() -> FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
Returns the “default value” for a type. Read more
Source§impl<const MAX_OUTGOING_ASSEMBLIES: usize> OutgoingAssemblyTable for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> OutgoingAssemblyTable for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
fn capacity(&self) -> usize
fn len(&self) -> usize
fn link_ids(&self) -> &[LinkId]
fn original_hashes(&self) -> &[ResourceHash]
fn push(&mut self, link_id: LinkId, original_hash: ResourceHash)
fn swap_remove(&mut self, index: usize)
fn is_empty(&self) -> bool
fn supports_static_continuations(&self) -> bool
fn static_continuation( &self, _index: usize, ) -> Option<StaticResponseContinuation>
fn set_static_continuation( &mut self, _index: usize, _continuation: StaticResponseContinuation, ) -> bool
Auto Trait Implementations§
impl<const MAX_OUTGOING_ASSEMBLIES: usize> Freeze for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> RefUnwindSafe for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> Send for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> Sync for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> Unpin for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> UnsafeUnpin for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
impl<const MAX_OUTGOING_ASSEMBLIES: usize> UnwindSafe for FixedOutgoingAssemblyTable<MAX_OUTGOING_ASSEMBLIES>
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