pub enum BufferType {
SpmcRing,
SingleLatest,
Mailbox,
}Expand description
The three AimDB buffer primitives.
Variants§
Implementations§
Source§impl BufferType
impl BufferType
Sourcepub fn label(&self, capacity: Option<usize>) -> String
pub fn label(&self, capacity: Option<usize>) -> String
Human-readable label used in Mermaid node annotations.
Sourcepub fn rust_expr(&self, capacity: Option<usize>) -> String
pub fn rust_expr(&self, capacity: Option<usize>) -> String
The BufferCfg expression emitted into generated Rust.
Sourcepub fn to_tokens(&self, capacity: Option<usize>) -> TokenStream
pub fn to_tokens(&self, capacity: Option<usize>) -> TokenStream
The BufferCfg expression as a token stream for use with quote!.
Trait Implementations§
Source§impl Clone for BufferType
impl Clone for BufferType
Source§fn clone(&self) -> BufferType
fn clone(&self) -> BufferType
Returns a duplicate of the value. Read more
1.0.0 · 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 BufferType
impl Debug for BufferType
Source§impl<'de> Deserialize<'de> for BufferType
impl<'de> Deserialize<'de> for BufferType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for BufferType
impl PartialEq for BufferType
Source§impl Serialize for BufferType
impl Serialize for BufferType
impl Eq for BufferType
impl StructuralPartialEq for BufferType
Auto Trait Implementations§
impl Freeze for BufferType
impl RefUnwindSafe for BufferType
impl Send for BufferType
impl Sync for BufferType
impl Unpin for BufferType
impl UnsafeUnpin for BufferType
impl UnwindSafe for BufferType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.