pub struct Activity {
pub actor_details: String,
pub actor_id: String,
pub actor_ip_address: String,
pub actor_type: ActivityActortype,
pub created_at: DateTime<Utc>,
pub id: String,
pub key_update_type: ActivityKeyupdatetype,
pub organization_id: String,
pub service_id: String,
pub target_key_id: String,
pub type: ActivityType,
pub user_agent: String,
}Expand description
Activity from the ClickHouse Cloud API.
Fields§
§actor_details: String§actor_id: String§actor_ip_address: String§actor_type: ActivityActortype§created_at: DateTime<Utc>§id: String§key_update_type: ActivityKeyupdatetype§organization_id: String§service_id: String§target_key_id: String§type: ActivityType§user_agent: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Activity
impl<'de> Deserialize<'de> for Activity
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
impl StructuralPartialEq for Activity
Auto Trait Implementations§
impl Freeze for Activity
impl RefUnwindSafe for Activity
impl Send for Activity
impl Sync for Activity
impl Unpin for Activity
impl UnsafeUnpin for Activity
impl UnwindSafe for Activity
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