pub struct LibraryConfig {
pub name: String,
pub value: String,
pub source: LibraryConfigSource,
pub config_id: Option<String>,
}Expand description
LibraryConfig represent a configuration item and is part of the public API of this module
Fields§
§name: String§value: String§source: LibraryConfigSource§config_id: Option<String>Trait Implementations§
Source§impl Debug for LibraryConfig
impl Debug for LibraryConfig
Source§impl PartialEq for LibraryConfig
impl PartialEq for LibraryConfig
impl Eq for LibraryConfig
impl StructuralPartialEq for LibraryConfig
Auto Trait Implementations§
impl Freeze for LibraryConfig
impl RefUnwindSafe for LibraryConfig
impl Send for LibraryConfig
impl Sync for LibraryConfig
impl Unpin for LibraryConfig
impl UnsafeUnpin for LibraryConfig
impl UnwindSafe for LibraryConfig
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<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.