pub struct RegistryState {
pub name: Option<String>,
pub url: String,
pub ref: String,
pub section: Option<String>,
pub resolved_commit: String,
pub cache_path: String,
}Fields§
§name: Option<String>§url: String§ref: String§section: Option<String>§resolved_commit: String§cache_path: StringImplementations§
Trait Implementations§
Source§impl Clone for RegistryState
impl Clone for RegistryState
Source§fn clone(&self) -> RegistryState
fn clone(&self) -> RegistryState
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 moreSource§impl Debug for RegistryState
impl Debug for RegistryState
Source§impl<'de> Deserialize<'de> for RegistryState
impl<'de> Deserialize<'de> for RegistryState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RegistryState
impl RefUnwindSafe for RegistryState
impl Send for RegistryState
impl Sync for RegistryState
impl Unpin for RegistryState
impl UnsafeUnpin for RegistryState
impl UnwindSafe for RegistryState
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