pub struct StaleTargetSignedPayload<'a> {
pub hostname: &'a str,
pub rollout: Option<&'a str>,
pub closure_hash: &'a str,
pub channel_ref: &'a str,
pub signed_at: DateTime<Utc>,
pub freshness_window_secs: u32,
pub age_secs: i64,
}Fields§
§hostname: &'a str§rollout: Option<&'a str>§closure_hash: &'a str§channel_ref: &'a str§signed_at: DateTime<Utc>§freshness_window_secs: u32§age_secs: i64Trait Implementations§
Source§impl<'a> Clone for StaleTargetSignedPayload<'a>
impl<'a> Clone for StaleTargetSignedPayload<'a>
Source§fn clone(&self) -> StaleTargetSignedPayload<'a>
fn clone(&self) -> StaleTargetSignedPayload<'a>
Returns a duplicate 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<'a> Debug for StaleTargetSignedPayload<'a>
impl<'a> Debug for StaleTargetSignedPayload<'a>
Auto Trait Implementations§
impl<'a> Freeze for StaleTargetSignedPayload<'a>
impl<'a> RefUnwindSafe for StaleTargetSignedPayload<'a>
impl<'a> Send for StaleTargetSignedPayload<'a>
impl<'a> Sync for StaleTargetSignedPayload<'a>
impl<'a> Unpin for StaleTargetSignedPayload<'a>
impl<'a> UnwindSafe for StaleTargetSignedPayload<'a>
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