pub struct DeleteSequenceRows {
pub rows: Vec<i64>,
pub id: Identity,
}Expand description
Request to delete a list of sequence rows from a sequence.
Fields§
§rows: Vec<i64>Row numbers to delete.
id: IdentityID of sequence to delete from.
Trait Implementations§
Source§impl Debug for DeleteSequenceRows
impl Debug for DeleteSequenceRows
Source§impl<'de> Deserialize<'de> for DeleteSequenceRows
impl<'de> Deserialize<'de> for DeleteSequenceRows
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 DeleteSequenceRows
impl RefUnwindSafe for DeleteSequenceRows
impl Send for DeleteSequenceRows
impl Sync for DeleteSequenceRows
impl Unpin for DeleteSequenceRows
impl UnwindSafe for DeleteSequenceRows
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