pub struct RedactedBecause(/* private fields */);Expand description
The value to put in unsigned.redacted_because.
Implementations§
Source§impl RedactedBecause
 
impl RedactedBecause
Sourcepub fn from_json(obj: BTreeMap<String, CanonicalJsonValue>) -> RedactedBecause
 Available on crate feature events only.
pub fn from_json(obj: BTreeMap<String, CanonicalJsonValue>) -> RedactedBecause
events only.Create a RedactedBecause from an arbitrary JSON object.
Sourcepub fn from_raw_event(
    ev: &Raw<impl RedactionEvent>,
) -> Result<RedactedBecause, Error>
 Available on crate feature events only.
pub fn from_raw_event( ev: &Raw<impl RedactionEvent>, ) -> Result<RedactedBecause, Error>
events only.Create a RedactedBecause from a redaction event.
Fails if the raw event is not valid canonical JSON.
Trait Implementations§
Source§impl Clone for RedactedBecause
 
impl Clone for RedactedBecause
Source§fn clone(&self) -> RedactedBecause
 
fn clone(&self) -> RedactedBecause
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 RedactedBecause
impl RefUnwindSafe for RedactedBecause
impl Send for RedactedBecause
impl Sync for RedactedBecause
impl Unpin for RedactedBecause
impl UnwindSafe for RedactedBecause
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