pub struct ProbableBead {
pub bead_id: String,
pub title: String,
pub status: String,
pub confidence: u32,
pub reasons: Vec<String>,
}Fields§
§bead_id: String§title: String§status: String§confidence: u32§reasons: Vec<String>Trait Implementations§
Source§impl Clone for ProbableBead
impl Clone for ProbableBead
Source§fn clone(&self) -> ProbableBead
fn clone(&self) -> ProbableBead
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 ProbableBead
impl Debug for ProbableBead
Auto Trait Implementations§
impl Freeze for ProbableBead
impl RefUnwindSafe for ProbableBead
impl Send for ProbableBead
impl Sync for ProbableBead
impl Unpin for ProbableBead
impl UnsafeUnpin for ProbableBead
impl UnwindSafe for ProbableBead
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