pub struct CollectionSearchEntry {
pub text: Vec<String>,
pub id: Option<String>,
pub cid: Option<Cid>,
pub prefix: Option<String>,
}Fields§
§text: Vec<String>§id: Option<String>§cid: Option<Cid>§prefix: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for CollectionSearchEntry
impl Clone for CollectionSearchEntry
Source§fn clone(&self) -> CollectionSearchEntry
fn clone(&self) -> CollectionSearchEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CollectionSearchEntry
impl Debug for CollectionSearchEntry
Source§impl PartialEq for CollectionSearchEntry
impl PartialEq for CollectionSearchEntry
Source§fn eq(&self, other: &CollectionSearchEntry) -> bool
fn eq(&self, other: &CollectionSearchEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CollectionSearchEntry
Auto Trait Implementations§
impl Freeze for CollectionSearchEntry
impl RefUnwindSafe for CollectionSearchEntry
impl Send for CollectionSearchEntry
impl Sync for CollectionSearchEntry
impl Unpin for CollectionSearchEntry
impl UnsafeUnpin for CollectionSearchEntry
impl UnwindSafe for CollectionSearchEntry
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