#[non_exhaustive]pub struct LocalEvaluationFailure<'a> { /* private fields */ }Expand description
Details of a failed local-evaluation definitions poll.
Fields are read through accessors; the struct is #[non_exhaustive].
Credentials (the personal API key) are never surfaced here.
Implementations§
Source§impl<'a> LocalEvaluationFailure<'a>
impl<'a> LocalEvaluationFailure<'a>
Sourcepub fn error(&self) -> &Error
pub fn error(&self) -> &Error
The cause of the failure (Error::Connection for transport or
non-success status, Error::Serialization for an unparseable body).
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LocalEvaluationFailure<'a>
impl<'a> RefUnwindSafe for LocalEvaluationFailure<'a>
impl<'a> Send for LocalEvaluationFailure<'a>
impl<'a> Sync for LocalEvaluationFailure<'a>
impl<'a> Unpin for LocalEvaluationFailure<'a>
impl<'a> UnsafeUnpin for LocalEvaluationFailure<'a>
impl<'a> UnwindSafe for LocalEvaluationFailure<'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