pub struct UpdateManifest {
pub version: String,
pub etag: String,
pub db_url: String,
pub sig_url: String,
pub sha256: String,
}Expand description
Update check response from the cloud sync endpoint.
Fields§
§version: StringCurrent latest version
etag: StringETag for cache validation
db_url: StringCDN download URL for the .zst compressed database
sig_url: StringCDN download URL for the Ed25519 signature file
sha256: StringSHA-256 checksum of the .zst file
Trait Implementations§
Source§impl Clone for UpdateManifest
impl Clone for UpdateManifest
Source§fn clone(&self) -> UpdateManifest
fn clone(&self) -> UpdateManifest
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 UpdateManifest
impl Debug for UpdateManifest
Source§impl<'de> Deserialize<'de> for UpdateManifest
impl<'de> Deserialize<'de> for UpdateManifest
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 UpdateManifest
impl RefUnwindSafe for UpdateManifest
impl Send for UpdateManifest
impl Sync for UpdateManifest
impl Unpin for UpdateManifest
impl UnsafeUnpin for UpdateManifest
impl UnwindSafe for UpdateManifest
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