pub struct RelatedBead {
pub bead_id: String,
pub title: String,
pub status: String,
pub shared_files: Vec<String>,
pub shared_file_count: usize,
pub relevance: f64,
}Fields§
§bead_id: String§title: String§status: String§relevance: f64Trait Implementations§
Source§impl Clone for RelatedBead
impl Clone for RelatedBead
Source§fn clone(&self) -> RelatedBead
fn clone(&self) -> RelatedBead
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 RelatedBead
impl Debug for RelatedBead
Auto Trait Implementations§
impl Freeze for RelatedBead
impl RefUnwindSafe for RelatedBead
impl Send for RelatedBead
impl Sync for RelatedBead
impl Unpin for RelatedBead
impl UnsafeUnpin for RelatedBead
impl UnwindSafe for RelatedBead
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