pub struct RegistryOptions {
pub id: String,
pub tag: String,
pub url: String,
pub ref: String,
pub section: Option<String>,
pub config: Option<AvailableConfig>,
pub sections: Option<BTreeMap<String, AvailableConfig>>,
pub is_active: bool,
}Fields§
§id: String§tag: String§url: String§ref: String§section: Option<String>§config: Option<AvailableConfig>§sections: Option<BTreeMap<String, AvailableConfig>>§is_active: boolTrait Implementations§
Source§impl Clone for RegistryOptions
impl Clone for RegistryOptions
Source§fn clone(&self) -> RegistryOptions
fn clone(&self) -> RegistryOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RegistryOptions
impl RefUnwindSafe for RegistryOptions
impl Send for RegistryOptions
impl Sync for RegistryOptions
impl Unpin for RegistryOptions
impl UnsafeUnpin for RegistryOptions
impl UnwindSafe for RegistryOptions
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