pub struct EventsSubscribeParams {
pub session_id: SessionId,
pub after_cursor: Option<EventStreamCursor>,
}Fields§
§session_id: SessionId§after_cursor: Option<EventStreamCursor>Trait Implementations§
Source§impl Clone for EventsSubscribeParams
impl Clone for EventsSubscribeParams
Source§fn clone(&self) -> EventsSubscribeParams
fn clone(&self) -> EventsSubscribeParams
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 EventsSubscribeParams
impl Debug for EventsSubscribeParams
Source§impl<'de> Deserialize<'de> for EventsSubscribeParams
impl<'de> Deserialize<'de> for EventsSubscribeParams
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
impl Eq for EventsSubscribeParams
Source§impl JsonSchema for EventsSubscribeParams
impl JsonSchema for EventsSubscribeParams
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for EventsSubscribeParams
impl PartialEq for EventsSubscribeParams
Source§impl Serialize for EventsSubscribeParams
impl Serialize for EventsSubscribeParams
impl StructuralPartialEq for EventsSubscribeParams
Auto Trait Implementations§
impl Freeze for EventsSubscribeParams
impl RefUnwindSafe for EventsSubscribeParams
impl Send for EventsSubscribeParams
impl Sync for EventsSubscribeParams
impl Unpin for EventsSubscribeParams
impl UnsafeUnpin for EventsSubscribeParams
impl UnwindSafe for EventsSubscribeParams
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