pub struct Group {
pub name: String,
pub notes: Option<String>,
pub tags: Vec<String>,
pub times: Times,
pub custom_data: HashMap<String, CustomDataItem>,
pub is_expanded: bool,
pub default_autotype_sequence: Option<String>,
pub enable_autotype: Option<bool>,
pub enable_searching: Option<bool>,
/* private fields */
}Expand description
A database group with child groups and entries
Fields§
§name: StringThe name of the group
notes: Option<String>Notes for the group
The list of tags for this group
times: TimesThe list of time fields for this group
custom_data: HashMap<String, CustomDataItem>Custom Data
is_expanded: boolWhether the group is expanded in the user interface
default_autotype_sequence: Option<String>Default autotype sequence
enable_autotype: Option<bool>Whether autotype is enabled
enable_searching: Option<bool>Whether searching is enabled
Implementations§
Trait Implementations§
impl Eq for Group
impl StructuralPartialEq for Group
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnsafeUnpin for Group
impl UnwindSafe for Group
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.