pub struct RetrieveLastSequenceRow {
pub columns: Option<Vec<String>>,
pub before: Option<i64>,
pub id: Identity,
}Expand description
Request to retrieve the sequence row with the highest row number.
Fields§
§columns: Option<Vec<String>>Columns to retrieve from.
before: Option<i64>Retrieve the row with the highest row number that is smaller than this.
id: IdentityID of sequence to retrieve from.
Trait Implementations§
Source§impl Debug for RetrieveLastSequenceRow
impl Debug for RetrieveLastSequenceRow
Source§impl<'de> Deserialize<'de> for RetrieveLastSequenceRow
impl<'de> Deserialize<'de> for RetrieveLastSequenceRow
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 RetrieveLastSequenceRow
impl RefUnwindSafe for RetrieveLastSequenceRow
impl Send for RetrieveLastSequenceRow
impl Sync for RetrieveLastSequenceRow
impl Unpin for RetrieveLastSequenceRow
impl UnwindSafe for RetrieveLastSequenceRow
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