pub struct HttpPushUriOptions {
pub http_push_uri_apply_time: Option<HttpPushUriApplyTime>,
pub force_update: Option<Boolean>,
}Fields§
§http_push_uri_apply_time: Option<HttpPushUriApplyTime>The settings for when to apply HttpPushUri-provided firmware.
This property shall contain settings for when to apply HttpPushUri-provided firmware.
force_update: Option<Boolean>An indication of whether the service should bypass update policies when applying the
HttpPushUri-provided image.
This property shall indicate whether the service should bypass update policies when applying the
HttpPushUri-provided image, such as allowing a component to be downgraded. Services may contain
update policies that are never bypassed, such as minimum version enforcement. If this property is
not present, it shall be assumed to be false.
Trait Implementations§
Source§impl Debug for HttpPushUriOptions
impl Debug for HttpPushUriOptions
Source§impl<'de> Deserialize<'de> for HttpPushUriOptions
impl<'de> Deserialize<'de> for HttpPushUriOptions
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
impl Send for HttpPushUriOptions
SAFETY: All generated data types are Send
impl Sync for HttpPushUriOptions
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for HttpPushUriOptions
impl RefUnwindSafe for HttpPushUriOptions
impl Unpin for HttpPushUriOptions
impl UnsafeUnpin for HttpPushUriOptions
impl UnwindSafe for HttpPushUriOptions
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