pub struct DirectoryUpdateManifest {
pub schema_version: u32,
pub version: String,
pub notes: Option<String>,
pub published_at: Option<String>,
pub signature: Option<ManifestSignature>,
pub platforms: BTreeMap<String, DirectoryPlatformRelease>,
}Fields§
§schema_version: u32§version: String§notes: Option<String>§published_at: Option<String>§signature: Option<ManifestSignature>§platforms: BTreeMap<String, DirectoryPlatformRelease>Implementations§
Trait Implementations§
Source§impl Clone for DirectoryUpdateManifest
impl Clone for DirectoryUpdateManifest
Source§fn clone(&self) -> DirectoryUpdateManifest
fn clone(&self) -> DirectoryUpdateManifest
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 DirectoryUpdateManifest
impl Debug for DirectoryUpdateManifest
Source§impl<'de> Deserialize<'de> for DirectoryUpdateManifest
impl<'de> Deserialize<'de> for DirectoryUpdateManifest
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 DirectoryUpdateManifest
impl RefUnwindSafe for DirectoryUpdateManifest
impl Send for DirectoryUpdateManifest
impl Sync for DirectoryUpdateManifest
impl Unpin for DirectoryUpdateManifest
impl UnsafeUnpin for DirectoryUpdateManifest
impl UnwindSafe for DirectoryUpdateManifest
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