pub struct PendingShutdownRow {
pub args: String,
}Fields§
§args: StringImplementations§
Source§impl PendingShutdownRow
impl PendingShutdownRow
pub const DB: DbId = DbId::NativeSession
pub fn key(&self) -> (NativeTable, NativeIndex)
Trait Implementations§
Source§impl Clone for PendingShutdownRow
impl Clone for PendingShutdownRow
Source§fn clone(&self) -> PendingShutdownRow
fn clone(&self) -> PendingShutdownRow
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 PendingShutdownRow
impl Debug for PendingShutdownRow
Source§impl<'de> Deserialize<'de> for PendingShutdownRow
impl<'de> Deserialize<'de> for PendingShutdownRow
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 Pack for PendingShutdownRow
impl Pack for PendingShutdownRow
Source§impl Serialize for PendingShutdownRow
impl Serialize for PendingShutdownRow
Source§impl ToSchema for PendingShutdownRow
impl ToSchema for PendingShutdownRow
fn schema(builder: &mut SchemaBuilder) -> AnyType
Source§impl<'a> Unpack<'a> for PendingShutdownRow
impl<'a> Unpack<'a> for PendingShutdownRow
Source§fn unpack(src: &mut FracInputStream<'a>) -> Result<Self>
fn unpack(src: &mut FracInputStream<'a>) -> Result<Self>
Convert from fracpack format. Also verifies the integrity of the data. Read more
Source§fn verify(src: &mut FracInputStream<'_>) -> Result<()>
fn verify(src: &mut FracInputStream<'_>) -> Result<()>
Verify the integrity of fracpack data. You don’t need to call this if
using [Pack::unpack] since it verifies integrity during unpack.
Auto Trait Implementations§
impl Freeze for PendingShutdownRow
impl RefUnwindSafe for PendingShutdownRow
impl Send for PendingShutdownRow
impl Sync for PendingShutdownRow
impl Unpin for PendingShutdownRow
impl UnsafeUnpin for PendingShutdownRow
impl UnwindSafe for PendingShutdownRow
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