pub struct EventStreamOut {
pub data: Vec<EventOut>,
pub done: bool,
pub iterator: String,
}
Fields§
§data: Vec<EventOut>
§done: bool
§iterator: String
Implementations§
Trait Implementations§
Source§impl Clone for EventStreamOut
impl Clone for EventStreamOut
Source§fn clone(&self) -> EventStreamOut
fn clone(&self) -> EventStreamOut
Returns a duplicate 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 EventStreamOut
impl Debug for EventStreamOut
Source§impl Default for EventStreamOut
impl Default for EventStreamOut
Source§fn default() -> EventStreamOut
fn default() -> EventStreamOut
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventStreamOut
impl<'de> Deserialize<'de> for EventStreamOut
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
Source§impl PartialEq for EventStreamOut
impl PartialEq for EventStreamOut
Source§impl Serialize for EventStreamOut
impl Serialize for EventStreamOut
impl StructuralPartialEq for EventStreamOut
Auto Trait Implementations§
impl Freeze for EventStreamOut
impl RefUnwindSafe for EventStreamOut
impl Send for EventStreamOut
impl Sync for EventStreamOut
impl Unpin for EventStreamOut
impl UnwindSafe for EventStreamOut
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