pub struct LatestLabels {
pub payment_abuse: Option<Label>,
pub promotion_abuse: Option<Label>,
pub account_abuse: Option<Label>,
pub account_takeover: Option<Label>,
pub content_abuse: Option<Label>,
}Expand description
Contains all computed labels for all applicable abuse types for a given entity.
Fields§
§payment_abuse: Option<Label>Label associated with the payment abuse type
promotion_abuse: Option<Label>Label associated with the promotion abuse type
account_abuse: Option<Label>Label associated with the account abuse type
account_takeover: Option<Label>Label associated with the account takeover abuse type
content_abuse: Option<Label>Label associated with the content abuse type
Trait Implementations§
Source§impl Clone for LatestLabels
impl Clone for LatestLabels
Source§fn clone(&self) -> LatestLabels
fn clone(&self) -> LatestLabels
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 moreSource§impl Debug for LatestLabels
impl Debug for LatestLabels
Source§impl<'de> Deserialize<'de> for LatestLabels
impl<'de> Deserialize<'de> for LatestLabels
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
Auto Trait Implementations§
impl Freeze for LatestLabels
impl RefUnwindSafe for LatestLabels
impl Send for LatestLabels
impl Sync for LatestLabels
impl Unpin for LatestLabels
impl UnwindSafe for LatestLabels
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