pub struct RefreshEventDetailsBuilder<'a> { /* private fields */ }Implementations§
Source§impl<'a> RefreshEventDetailsBuilder<'a>
impl<'a> RefreshEventDetailsBuilder<'a>
Sourcepub fn fetchResult(self, fetchResult: DeviceBoundSessionFetchResult) -> Self
pub fn fetchResult(self, fetchResult: DeviceBoundSessionFetchResult) -> Self
If there was a fetch attempt, the result of that.
Sourcepub fn newSession(self, newSession: DeviceBoundSession<'a>) -> Self
pub fn newSession(self, newSession: DeviceBoundSession<'a>) -> Self
The session display if there was a newly created session. This is populated for any refresh event that modifies the session config.
Sourcepub fn failedRequest(
self,
failedRequest: DeviceBoundSessionFailedRequest<'a>,
) -> Self
pub fn failedRequest( self, failedRequest: DeviceBoundSessionFailedRequest<'a>, ) -> Self
Details about a failed device bound session network request if there was one.
pub fn build(self) -> RefreshEventDetails<'a>
Auto Trait Implementations§
impl<'a> Freeze for RefreshEventDetailsBuilder<'a>
impl<'a> RefUnwindSafe for RefreshEventDetailsBuilder<'a>
impl<'a> Send for RefreshEventDetailsBuilder<'a>
impl<'a> Sync for RefreshEventDetailsBuilder<'a>
impl<'a> Unpin for RefreshEventDetailsBuilder<'a>
impl<'a> UnsafeUnpin for RefreshEventDetailsBuilder<'a>
impl<'a> UnwindSafe for RefreshEventDetailsBuilder<'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