pub struct ResponseRetrieveParamsBase {
pub include: Option<Vec<ResponseIncludable>>,
pub include_obfuscation: Option<bool>,
pub starting_after: Option<i64>,
}Fields§
§include: Option<Vec<ResponseIncludable>>Additional fields to include in the response.
include_obfuscation: Option<bool>When true, stream obfuscation will be enabled.
starting_after: Option<i64>The sequence number of the event after which to start streaming.
Trait Implementations§
Source§impl Clone for ResponseRetrieveParamsBase
impl Clone for ResponseRetrieveParamsBase
Source§fn clone(&self) -> ResponseRetrieveParamsBase
fn clone(&self) -> ResponseRetrieveParamsBase
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 ResponseRetrieveParamsBase
impl Debug for ResponseRetrieveParamsBase
Source§impl<'de> Deserialize<'de> for ResponseRetrieveParamsBase
impl<'de> Deserialize<'de> for ResponseRetrieveParamsBase
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 ResponseRetrieveParamsBase
impl RefUnwindSafe for ResponseRetrieveParamsBase
impl Send for ResponseRetrieveParamsBase
impl Sync for ResponseRetrieveParamsBase
impl Unpin for ResponseRetrieveParamsBase
impl UnsafeUnpin for ResponseRetrieveParamsBase
impl UnwindSafe for ResponseRetrieveParamsBase
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