pub struct RecordScanOutput {
pub records: Vec<RecordOutput>,
pub returned_count: usize,
pub next_cursor: Option<String>,
}Fields§
§records: Vec<RecordOutput>§returned_count: usize§next_cursor: Option<String>Trait Implementations§
Source§impl Clone for RecordScanOutput
impl Clone for RecordScanOutput
Source§fn clone(&self) -> RecordScanOutput
fn clone(&self) -> RecordScanOutput
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 RecordScanOutput
impl Debug for RecordScanOutput
Source§impl<'de> Deserialize<'de> for RecordScanOutput
impl<'de> Deserialize<'de> for RecordScanOutput
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 RecordScanOutput
impl PartialEq for RecordScanOutput
Source§fn eq(&self, other: &RecordScanOutput) -> bool
fn eq(&self, other: &RecordScanOutput) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecordScanOutput
impl Serialize for RecordScanOutput
impl StructuralPartialEq for RecordScanOutput
Auto Trait Implementations§
impl Freeze for RecordScanOutput
impl RefUnwindSafe for RecordScanOutput
impl Send for RecordScanOutput
impl Sync for RecordScanOutput
impl Unpin for RecordScanOutput
impl UnsafeUnpin for RecordScanOutput
impl UnwindSafe for RecordScanOutput
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