pub struct OCORecordsQuery {
pub symbol: Option<String>,
pub from_id: Option<u64>,
pub start_time: Option<u64>,
pub end_time: Option<u64>,
pub limit: Option<u8>,
pub is_isolated: Option<String>,
}Fields§
§symbol: Option<String>§from_id: Option<u64>§start_time: Option<u64>§end_time: Option<u64>§limit: Option<u8>§is_isolated: Option<String>“TRUE” or “FALSE”, default is “FALSE”
Trait Implementations§
Source§impl Clone for OCORecordsQuery
impl Clone for OCORecordsQuery
Source§fn clone(&self) -> OCORecordsQuery
fn clone(&self) -> OCORecordsQuery
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 OCORecordsQuery
impl Debug for OCORecordsQuery
Source§impl Default for OCORecordsQuery
impl Default for OCORecordsQuery
Source§fn default() -> OCORecordsQuery
fn default() -> OCORecordsQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OCORecordsQuery
impl<'de> Deserialize<'de> for OCORecordsQuery
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 OCORecordsQuery
impl RefUnwindSafe for OCORecordsQuery
impl Send for OCORecordsQuery
impl Sync for OCORecordsQuery
impl Unpin for OCORecordsQuery
impl UnwindSafe for OCORecordsQuery
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