pub struct CallLogPrivileged {
pub call_id: String,
pub org_id: String,
pub log: String,
pub level: LevelTrue,
pub time: String,
}
Fields§
§call_id: String
This is the unique identifier for the call.
org_id: String
This is the unique identifier for the org that this call log belongs to.
log: String
This is the log message associated with the call.
level: LevelTrue
This is the level of the log message.
time: String
This is the ISO 8601 date-time string of when the log was created.
Implementations§
Trait Implementations§
Source§impl Clone for CallLogPrivileged
impl Clone for CallLogPrivileged
Source§fn clone(&self) -> CallLogPrivileged
fn clone(&self) -> CallLogPrivileged
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CallLogPrivileged
impl Debug for CallLogPrivileged
Source§impl Default for CallLogPrivileged
impl Default for CallLogPrivileged
Source§fn default() -> CallLogPrivileged
fn default() -> CallLogPrivileged
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallLogPrivileged
impl<'de> Deserialize<'de> for CallLogPrivileged
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 CallLogPrivileged
impl PartialEq for CallLogPrivileged
Source§impl Serialize for CallLogPrivileged
impl Serialize for CallLogPrivileged
impl StructuralPartialEq for CallLogPrivileged
Auto Trait Implementations§
impl Freeze for CallLogPrivileged
impl RefUnwindSafe for CallLogPrivileged
impl Send for CallLogPrivileged
impl Sync for CallLogPrivileged
impl Unpin for CallLogPrivileged
impl UnwindSafe for CallLogPrivileged
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