pub struct EventSourcePaging {
pub subscription_id: String,
}
Expand description
This is needed instead of Paging because the parameters are different. We also don’t need the typical pagination params because pagination of this isn’t necessary or supported.
Fields§
§subscription_id: String
The unique identifier for the Event Subscription that this Event Source is attached to.
Trait Implementations§
Source§impl Clone for EventSourcePaging
impl Clone for EventSourcePaging
Source§fn clone(&self) -> EventSourcePaging
fn clone(&self) -> EventSourcePaging
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 EventSourcePaging
impl Debug for EventSourcePaging
Source§impl Default for EventSourcePaging
impl Default for EventSourcePaging
Source§fn default() -> EventSourcePaging
fn default() -> EventSourcePaging
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventSourcePaging
impl<'de> Deserialize<'de> for EventSourcePaging
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 EventSourcePaging
impl RefUnwindSafe for EventSourcePaging
impl Send for EventSourcePaging
impl Sync for EventSourcePaging
impl Unpin for EventSourcePaging
impl UnwindSafe for EventSourcePaging
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