pub struct StreamLinesResult {
pub lines: Vec<String>,
pub total_lines: usize,
pub offset: usize,
pub more: bool,
pub byte_cap: bool,
}Fields§
§lines: Vec<String>§total_lines: usize§offset: usize§more: bool§byte_cap: boolTrait Implementations§
Source§impl Clone for StreamLinesResult
impl Clone for StreamLinesResult
Source§fn clone(&self) -> StreamLinesResult
fn clone(&self) -> StreamLinesResult
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 moreAuto Trait Implementations§
impl Freeze for StreamLinesResult
impl RefUnwindSafe for StreamLinesResult
impl Send for StreamLinesResult
impl Sync for StreamLinesResult
impl Unpin for StreamLinesResult
impl UnsafeUnpin for StreamLinesResult
impl UnwindSafe for StreamLinesResult
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