Struct fidl_fuchsia_update_installer::Options
source · pub struct Options {
pub initiator: Option<Initiator>,
pub allow_attach_to_existing_attempt: Option<bool>,
pub should_write_recovery: Option<bool>,
/* private fields */
}
Expand description
Configuration options for an update attempt.
Fields§
§initiator: Option<Initiator>
What initiated this update attempt. Required.
allow_attach_to_existing_attempt: Option<bool>
If an update is already in progress, it’s acceptable to instead attach a Monitor to that in-progress update instead of failing this request to install the update. Setting this option to true may convert situations that would have resulted in the ALREADY_IN_PROGRESS to be treated as non-error cases. A controller, if provided, will be ignored if the running update attempt already has a controller.
should_write_recovery: Option<bool>
Determines if the installer should update the recovery partition if an update is available. Defaults to true.
Implementations§
Trait Implementations§
source§impl Decode<Options> for Options
impl Decode<Options> for Options
source§impl PartialEq<Options> for Options
impl PartialEq<Options> for Options
source§impl TypeMarker for Options
impl TypeMarker for Options
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
.source§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 moresource§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.