pub struct RhaiEngineOutput {
pub output: RAVEOutput,
pub rejected_links: Vec<ProcessedLinks>,
pub redacted_links: Vec<ProcessedLinks>,
}Fields§
§output: RAVEOutput§rejected_links: Vec<ProcessedLinks>§redacted_links: Vec<ProcessedLinks>Trait Implementations§
Source§impl Clone for RhaiEngineOutput
impl Clone for RhaiEngineOutput
Source§fn clone(&self) -> RhaiEngineOutput
fn clone(&self) -> RhaiEngineOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RhaiEngineOutput
impl Debug for RhaiEngineOutput
Source§impl<'de> Deserialize<'de> for RhaiEngineOutput
impl<'de> Deserialize<'de> for RhaiEngineOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RhaiEngineOutput
impl PartialEq for RhaiEngineOutput
Source§fn eq(&self, other: &RhaiEngineOutput) -> bool
fn eq(&self, other: &RhaiEngineOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RhaiEngineOutput
impl Serialize for RhaiEngineOutput
impl StructuralPartialEq for RhaiEngineOutput
Source§impl TryFrom<&RhaiEngineOutput> for SerializedBytes
impl TryFrom<&RhaiEngineOutput> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
t: &RhaiEngineOutput,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: &RhaiEngineOutput, ) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<RhaiEngineOutput> for SerializedBytes
impl TryFrom<RhaiEngineOutput> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
t: RhaiEngineOutput,
) -> Result<SerializedBytes, SerializedBytesError>
fn try_from( t: RhaiEngineOutput, ) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<SerializedBytes> for RhaiEngineOutput
impl TryFrom<SerializedBytes> for RhaiEngineOutput
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(
sb: SerializedBytes,
) -> Result<RhaiEngineOutput, SerializedBytesError>
fn try_from( sb: SerializedBytes, ) -> Result<RhaiEngineOutput, SerializedBytesError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RhaiEngineOutput
impl RefUnwindSafe for RhaiEngineOutput
impl Send for RhaiEngineOutput
impl Sync for RhaiEngineOutput
impl Unpin for RhaiEngineOutput
impl UnsafeUnpin for RhaiEngineOutput
impl UnwindSafe for RhaiEngineOutput
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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