pub struct QotRightRefreshReport {Show 17 fields
pub changed: bool,
pub reconnect_quote_types: Vec<i32>,
pub has_set_qot_right_before: bool,
pub has_us_utp_changed: bool,
pub quota_data_changed: bool,
pub quota_projection_available: bool,
pub backend_generation: u64,
pub route_publication_epoch: u64,
pub request_is_highest: bool,
pub force_resubscribe: bool,
pub resubscribe_scope: QotRightResubscribeScope,
pub deferred_reconnect_token: Option<QotRightReconnectToken>,
pub deferred_reconnect_blocked: bool,
pub fresh_at_ms: i64,
pub decoded_fields: Vec<&'static str>,
pub freshness_after: QotRightFreshness,
pub login_epoch: u64,
}Fields§
§changed: bool§reconnect_quote_types: Vec<i32>§has_set_qot_right_before: bool§has_us_utp_changed: bool§quota_data_changed: bool§quota_projection_available: bool§backend_generation: u64§route_publication_epoch: u64§request_is_highest: bool§force_resubscribe: bool§resubscribe_scope: QotRightResubscribeScope§deferred_reconnect_token: Option<QotRightReconnectToken>§deferred_reconnect_blocked: bool§fresh_at_ms: i64§decoded_fields: Vec<&'static str>§freshness_after: QotRightFreshness§login_epoch: u64Trait Implementations§
Source§impl Clone for QotRightRefreshReport
impl Clone for QotRightRefreshReport
Source§fn clone(&self) -> QotRightRefreshReport
fn clone(&self) -> QotRightRefreshReport
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 moreAuto Trait Implementations§
impl Freeze for QotRightRefreshReport
impl RefUnwindSafe for QotRightRefreshReport
impl Send for QotRightRefreshReport
impl Sync for QotRightRefreshReport
impl Unpin for QotRightRefreshReport
impl UnsafeUnpin for QotRightRefreshReport
impl UnwindSafe for QotRightRefreshReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more