pub struct EntryOptions {
pub id: String,
pub name: String,
pub disabled: bool,
}Expand description
Options of a single config entry (one line in the config file).
Fields§
§id: StringUnique entry id within its tree.
name: StringPlugin name to resolve.
disabled: boolWhether this entry (and its descendants) is disabled.
Trait Implementations§
Source§impl Clone for EntryOptions
impl Clone for EntryOptions
Source§fn clone(&self) -> EntryOptions
fn clone(&self) -> EntryOptions
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 EntryOptions
impl Debug for EntryOptions
Source§impl Default for EntryOptions
impl Default for EntryOptions
Source§fn default() -> EntryOptions
fn default() -> EntryOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EntryOptions
impl RefUnwindSafe for EntryOptions
impl Send for EntryOptions
impl Sync for EntryOptions
impl Unpin for EntryOptions
impl UnsafeUnpin for EntryOptions
impl UnwindSafe for EntryOptions
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