pub struct GenericNoteRecord {
pub label: String,
pub text: String,
pub tags: Option<HashSet<String>>,
pub note: Option<String>,
}Available on crate feature
import only.Expand description
Generic note record.
Fields§
§label: StringThe label of the entry.
text: StringThe text for the note entry.
Collection of tags.
note: Option<String>Optional note.
Trait Implementations§
Source§impl From<BitwardenPasswordRecord> for GenericNoteRecord
impl From<BitwardenPasswordRecord> for GenericNoteRecord
Source§fn from(value: BitwardenPasswordRecord) -> Self
fn from(value: BitwardenPasswordRecord) -> Self
Converts to this type from the input type.
Source§impl From<DashlaneNoteRecord> for GenericNoteRecord
impl From<DashlaneNoteRecord> for GenericNoteRecord
Source§fn from(value: DashlaneNoteRecord) -> Self
fn from(value: DashlaneNoteRecord) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GenericNoteRecord
impl RefUnwindSafe for GenericNoteRecord
impl Send for GenericNoteRecord
impl Sync for GenericNoteRecord
impl Unpin for GenericNoteRecord
impl UnwindSafe for GenericNoteRecord
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