pub struct RegistryVersion {
pub protocol_version: u32,
pub min_ta_version: Option<String>,
pub platforms: HashMap<String, PlatformDownload>,
}Expand description
A specific version’s release information.
Fields§
§protocol_version: u32Plugin protocol version.
min_ta_version: Option<String>Minimum TA CLI version required.
platforms: HashMap<String, PlatformDownload>Platform-specific download information.
Trait Implementations§
Source§impl Clone for RegistryVersion
impl Clone for RegistryVersion
Source§fn clone(&self) -> RegistryVersion
fn clone(&self) -> RegistryVersion
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 RegistryVersion
impl Debug for RegistryVersion
Source§impl<'de> Deserialize<'de> for RegistryVersion
impl<'de> Deserialize<'de> for RegistryVersion
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 RegistryVersion
impl RefUnwindSafe for RegistryVersion
impl Send for RegistryVersion
impl Sync for RegistryVersion
impl Unpin for RegistryVersion
impl UnsafeUnpin for RegistryVersion
impl UnwindSafe for RegistryVersion
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