pub struct RecentDeviceActivity {
pub device_activity_level: Option<String>,
}Expand description
Recent device activity can help developers identify devices that have exhibited hyperactive attestation activity, which could be a sign of an attack or token farming.
This type is not used in any activity, and only used as part of another schema.
Fields§
§device_activity_level: Option<String>Required. Indicates the activity level of the device.
Trait Implementations§
Source§impl Clone for RecentDeviceActivity
impl Clone for RecentDeviceActivity
Source§fn clone(&self) -> RecentDeviceActivity
fn clone(&self) -> RecentDeviceActivity
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 RecentDeviceActivity
impl Debug for RecentDeviceActivity
Source§impl Default for RecentDeviceActivity
impl Default for RecentDeviceActivity
Source§fn default() -> RecentDeviceActivity
fn default() -> RecentDeviceActivity
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecentDeviceActivity
impl<'de> Deserialize<'de> for RecentDeviceActivity
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 Serialize for RecentDeviceActivity
impl Serialize for RecentDeviceActivity
impl Part for RecentDeviceActivity
Auto Trait Implementations§
impl Freeze for RecentDeviceActivity
impl RefUnwindSafe for RecentDeviceActivity
impl Send for RecentDeviceActivity
impl Sync for RecentDeviceActivity
impl Unpin for RecentDeviceActivity
impl UnwindSafe for RecentDeviceActivity
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