pub struct ArticleFailure {
pub kind: ArticleFailureKind,
pub server_id: String,
pub message: String,
}Expand description
A classified article failure ready to flow through the progress channel.
Fields§
§kind: ArticleFailureKind§server_id: String§message: StringImplementations§
Source§impl ArticleFailure
impl ArticleFailure
Sourcepub fn from_nntp(err: &NntpError, server_id: impl Into<String>) -> Self
pub fn from_nntp(err: &NntpError, server_id: impl Into<String>) -> Self
Classify an NntpError observed by a worker fetching an article.
Sourcepub fn decode_error(
server_id: impl Into<String>,
msg: impl Into<String>,
) -> Self
pub fn decode_error( server_id: impl Into<String>, msg: impl Into<String>, ) -> Self
Decode or yEnc-assembly failure raised above the NNTP layer.
Sourcepub fn not_found_anywhere(server_id: impl Into<String>) -> Self
pub fn not_found_anywhere(server_id: impl Into<String>) -> Self
Article is present nowhere — emitted when every enabled server has already been tried for this article and the last attempt failed.
Trait Implementations§
Source§impl Clone for ArticleFailure
impl Clone for ArticleFailure
Source§fn clone(&self) -> ArticleFailure
fn clone(&self) -> ArticleFailure
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 Debug for ArticleFailure
impl Debug for ArticleFailure
Auto Trait Implementations§
impl Freeze for ArticleFailure
impl RefUnwindSafe for ArticleFailure
impl Send for ArticleFailure
impl Sync for ArticleFailure
impl Unpin for ArticleFailure
impl UnsafeUnpin for ArticleFailure
impl UnwindSafe for ArticleFailure
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,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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