pub struct HookStartedMessage {
pub hook_id: String,
pub hook_name: String,
pub hook_event: String,
pub uuid: Option<String>,
pub session_id: Option<String>,
}Fields§
§hook_id: String§hook_name: String§hook_event: String§uuid: Option<String>§session_id: Option<String>Trait Implementations§
Source§impl Clone for HookStartedMessage
impl Clone for HookStartedMessage
Source§fn clone(&self) -> HookStartedMessage
fn clone(&self) -> HookStartedMessage
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 HookStartedMessage
impl Debug for HookStartedMessage
Source§impl<'de> Deserialize<'de> for HookStartedMessage
impl<'de> Deserialize<'de> for HookStartedMessage
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 HookStartedMessage
impl RefUnwindSafe for HookStartedMessage
impl Send for HookStartedMessage
impl Sync for HookStartedMessage
impl Unpin for HookStartedMessage
impl UnsafeUnpin for HookStartedMessage
impl UnwindSafe for HookStartedMessage
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