pub struct Generic<'a> { /* private fields */ }
Expand description
Generic note
Trait Implementations§
§impl NoteBase for Generic<'_>
impl NoteBase for Generic<'_>
§fn get_type(&self) -> Type
fn get_type(&self) -> Type
Return the type of the note. This type does not match the
NT_
type
value. For accessing the original NT_
value, check NoteBase::original_type
§fn original_type(&self) -> u32
fn original_type(&self) -> u32
The original
NT_xxx
integer value. The meaning of this value likely
depends on the owner of the note.§fn description(&self) -> &[u8] ⓘ
fn description(&self) -> &[u8] ⓘ
Return the description associated with the note
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Generic<'a>
impl<'a> !Send for Generic<'a>
impl<'a> !Sync for Generic<'a>
impl<'a> Unpin for Generic<'a>
impl<'a> UnwindSafe for Generic<'a>
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