pub struct AuditLogTarget {
pub id: Option<String>,
pub metadata: Option<Value>,
pub name: Option<String>,
pub _type: Option<String>,
}Expand description
AuditLogTarget : A resource the action was performed on.
Fields§
§id: Option<String>UUID of the resource.
metadata: Option<Value>Additional resource-specific data.
name: Option<String>Display name of the resource. Absent if unavailable.
_type: Option<String>Resource type (e.g. notification, segment, journey, app).
Implementations§
Source§impl AuditLogTarget
impl AuditLogTarget
Sourcepub fn new() -> AuditLogTarget
pub fn new() -> AuditLogTarget
A resource the action was performed on.
Trait Implementations§
Source§impl Clone for AuditLogTarget
impl Clone for AuditLogTarget
Source§fn clone(&self) -> AuditLogTarget
fn clone(&self) -> AuditLogTarget
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuditLogTarget
impl Debug for AuditLogTarget
Source§impl Default for AuditLogTarget
impl Default for AuditLogTarget
Source§fn default() -> AuditLogTarget
fn default() -> AuditLogTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogTarget
impl<'de> Deserialize<'de> for AuditLogTarget
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 PartialEq for AuditLogTarget
impl PartialEq for AuditLogTarget
Source§impl Serialize for AuditLogTarget
impl Serialize for AuditLogTarget
impl StructuralPartialEq for AuditLogTarget
Auto Trait Implementations§
impl Freeze for AuditLogTarget
impl RefUnwindSafe for AuditLogTarget
impl Send for AuditLogTarget
impl Sync for AuditLogTarget
impl Unpin for AuditLogTarget
impl UnsafeUnpin for AuditLogTarget
impl UnwindSafe for AuditLogTarget
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