pub struct ImplementationNote {
pub topic: String,
pub content: String,
pub importance: NoteImportance,
}Expand description
Implementation notes for numerical considerations.
Fields§
§topic: StringTopic (e.g., “Numerical Stability”)
content: StringThe note content
importance: NoteImportanceSeverity/importance
Trait Implementations§
Source§impl Clone for ImplementationNote
impl Clone for ImplementationNote
Source§fn clone(&self) -> ImplementationNote
fn clone(&self) -> ImplementationNote
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 moreAuto Trait Implementations§
impl Freeze for ImplementationNote
impl RefUnwindSafe for ImplementationNote
impl Send for ImplementationNote
impl Sync for ImplementationNote
impl Unpin for ImplementationNote
impl UnsafeUnpin for ImplementationNote
impl UnwindSafe for ImplementationNote
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