Struct fidl_fuchsia_update::UpdateInfo
source · pub struct UpdateInfo {
pub version_available: Option<String>,
pub download_size: Option<u64>,
pub urgent: Option<bool>,
/* private fields */
}
Expand description
This describes the update that is available to be installed.
Fields§
§version_available: Option<String>
A string that describes the version that is available. This may be either a semantic version (A.B.C.D) or an opaque hash. Clients MUST not attempt to inspect this value, it is for display purposes only.
download_size: Option<u64>
The total number of bytes that may be downloaded to apply this update.
urgent: Option<bool>
Whether the update was marked as urgent. Default is false.
Trait Implementations§
source§impl Clone for UpdateInfo
impl Clone for UpdateInfo
source§fn clone(&self) -> UpdateInfo
fn clone(&self) -> UpdateInfo
Returns a copy 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 UpdateInfo
impl Debug for UpdateInfo
source§impl<D: ResourceDialect> Decode<UpdateInfo, D> for UpdateInfo
impl<D: ResourceDialect> Decode<UpdateInfo, D> for UpdateInfo
source§impl Default for UpdateInfo
impl Default for UpdateInfo
source§fn default() -> UpdateInfo
fn default() -> UpdateInfo
Returns the “default value” for a type. Read more
source§impl<D: ResourceDialect> Encode<UpdateInfo, D> for &UpdateInfo
impl<D: ResourceDialect> Encode<UpdateInfo, D> for &UpdateInfo
source§impl PartialEq for UpdateInfo
impl PartialEq for UpdateInfo
source§fn eq(&self, other: &UpdateInfo) -> bool
fn eq(&self, other: &UpdateInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TypeMarker for UpdateInfo
impl TypeMarker for UpdateInfo
§type Owned = UpdateInfo
type Owned = UpdateInfo
The owned Rust type which this FIDL type decodes into.
source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.source§impl ValueTypeMarker for UpdateInfo
impl ValueTypeMarker for UpdateInfo
§type Borrowed<'a> = &'a UpdateInfo
type Borrowed<'a> = &'a UpdateInfo
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Persistable for UpdateInfo
impl StructuralPartialEq for UpdateInfo
Auto Trait Implementations§
impl Freeze for UpdateInfo
impl RefUnwindSafe for UpdateInfo
impl Send for UpdateInfo
impl Sync for UpdateInfo
impl Unpin for UpdateInfo
impl UnwindSafe for UpdateInfo
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)