Struct mpot_gen::mail::message_filters::ArchivedAtLink
source · pub struct ArchivedAtLink;
Expand description
Adds Archived-At
field, if configured.
Trait Implementations§
source§impl PostFilter for ArchivedAtLink
impl PostFilter for ArchivedAtLink
source§fn feed<'p, 'list>(
self: Box<ArchivedAtLink, Global>,
post: &'p mut Post,
ctx: &'p mut ListContext<'list>
) -> Result<(&'p mut Post, &'p mut ListContext<'list>), ()>
fn feed<'p, 'list>( self: Box<ArchivedAtLink, Global>, post: &'p mut Post, ctx: &'p mut ListContext<'list> ) -> Result<(&'p mut Post, &'p mut ListContext<'list>), ()>
Feed post into the filter. Perform modifications to
post
and / or
ctx
, and return them with Result::Ok
unless you want to the
processing to stop and return an Result::Err
.