pub struct Cluster {
pub header: String,
pub verified: bool,
pub level: usize,
pub entries: Vec<Entry>,
pub notes: Vec<String>,
}
Fields§
§header: String
§verified: bool
§level: usize
§entries: Vec<Entry>
§notes: Vec<String>
Implementations§
Trait Implementations§
impl Eq for Cluster
impl StructuralPartialEq for Cluster
Auto Trait Implementations§
impl Freeze for Cluster
impl RefUnwindSafe for Cluster
impl Send for Cluster
impl Sync for Cluster
impl Unpin for Cluster
impl UnwindSafe for Cluster
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