pub struct ExtractionRefusalRow {
pub memory_rid: String,
pub namespace: String,
pub rel_type: String,
pub trigger: String,
pub reason: String,
pub left_token: String,
pub right_token: String,
pub at: i64,
pub extractor_version: String,
}Expand description
One row of the refusal ledger.
Fields§
§memory_rid: String§namespace: String§rel_type: String§trigger: String§reason: String§left_token: String§right_token: String§at: i64§extractor_version: StringTrait Implementations§
Source§impl Clone for ExtractionRefusalRow
impl Clone for ExtractionRefusalRow
Source§fn clone(&self) -> ExtractionRefusalRow
fn clone(&self) -> ExtractionRefusalRow
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 ExtractionRefusalRow
impl Debug for ExtractionRefusalRow
Source§impl PartialEq for ExtractionRefusalRow
impl PartialEq for ExtractionRefusalRow
Source§impl Serialize for ExtractionRefusalRow
impl Serialize for ExtractionRefusalRow
impl StructuralPartialEq for ExtractionRefusalRow
Auto Trait Implementations§
impl Freeze for ExtractionRefusalRow
impl RefUnwindSafe for ExtractionRefusalRow
impl Send for ExtractionRefusalRow
impl Sync for ExtractionRefusalRow
impl Unpin for ExtractionRefusalRow
impl UnsafeUnpin for ExtractionRefusalRow
impl UnwindSafe for ExtractionRefusalRow
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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