pub struct EventSourceUpdate {
pub subscription_id: String,
pub type: String,
}
Fields§
§subscription_id: String
The unique identifier for the Event Subscription that this Event Source is attached to.
type: String
Type of event for which an event subscription will trigger
Trait Implementations§
Source§impl Clone for EventSourceUpdate
impl Clone for EventSourceUpdate
Source§fn clone(&self) -> EventSourceUpdate
fn clone(&self) -> EventSourceUpdate
Returns a copy 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 EventSourceUpdate
impl Debug for EventSourceUpdate
Source§impl Default for EventSourceUpdate
impl Default for EventSourceUpdate
Source§fn default() -> EventSourceUpdate
fn default() -> EventSourceUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventSourceUpdate
impl<'de> Deserialize<'de> for EventSourceUpdate
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 EventSourceUpdate
impl RefUnwindSafe for EventSourceUpdate
impl Send for EventSourceUpdate
impl Sync for EventSourceUpdate
impl Unpin for EventSourceUpdate
impl UnwindSafe for EventSourceUpdate
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