pub struct AttributeInfo {
pub write_behavior: WriteBehavior,
pub pii: Pii,
pub aliases: &'static [&'static str],
}Expand description
Information about an attribute, as defined in sentry-conventions.
Fields§
§write_behavior: WriteBehaviorHow this attribute should be saved.
pii: PiiWhether this attribute can contain PII.
aliases: &'static [&'static str]Other attribute names that alias to this attribute.
Trait Implementations§
Source§impl Clone for AttributeInfo
impl Clone for AttributeInfo
Source§fn clone(&self) -> AttributeInfo
fn clone(&self) -> AttributeInfo
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 AttributeInfo
impl RefUnwindSafe for AttributeInfo
impl Send for AttributeInfo
impl Sync for AttributeInfo
impl Unpin for AttributeInfo
impl UnwindSafe for AttributeInfo
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