pub struct FilterOutput {
pub text: String,
pub passthrough: bool,
}Expand description
Output from a filter plugin.
Fields§
§text: StringFiltered text
passthrough: boolWhether filter passed through without changes
Trait Implementations§
Source§impl Clone for FilterOutput
impl Clone for FilterOutput
Source§fn clone(&self) -> FilterOutput
fn clone(&self) -> FilterOutput
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 moreAuto Trait Implementations§
impl Freeze for FilterOutput
impl RefUnwindSafe for FilterOutput
impl Send for FilterOutput
impl Sync for FilterOutput
impl Unpin for FilterOutput
impl UnsafeUnpin for FilterOutput
impl UnwindSafe for FilterOutput
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