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