pub struct SqlEvent(pub Event);Tuple Fields§
§0: EventTrait Implementations§
Source§impl Cursor for SqlEvent
impl Cursor for SqlEvent
Source§type T = EventCursor
type T = EventCursor
The cursor data type (e.g.,
EventCursor)Source§fn serialize_cursor(&self) -> Result<Value, CursorError>
fn serialize_cursor(&self) -> Result<Value, CursorError>
Serializes cursor data to a base64
Value.Source§fn deserialize_cursor(value: &Value) -> Result<Self::T, CursorError>
fn deserialize_cursor(value: &Value) -> Result<Self::T, CursorError>
Deserializes cursor data from a base64
Value.Source§impl<R: Row> FromRow<'_, R> for SqlEventwhere
i32: Type<R::Database> + for<'r> Decode<'r, R::Database>,
Vec<u8>: Type<R::Database> + for<'r> Decode<'r, R::Database>,
String: Type<R::Database> + for<'r> Decode<'r, R::Database>,
i64: Type<R::Database> + for<'r> Decode<'r, R::Database>,
for<'r, 'r> &'r str: Type<R::Database> + Decode<'r, R::Database> + ColumnIndex<R>,
impl<R: Row> FromRow<'_, R> for SqlEventwhere
i32: Type<R::Database> + for<'r> Decode<'r, R::Database>,
Vec<u8>: Type<R::Database> + for<'r> Decode<'r, R::Database>,
String: Type<R::Database> + for<'r> Decode<'r, R::Database>,
i64: Type<R::Database> + for<'r> Decode<'r, R::Database>,
for<'r, 'r> &'r str: Type<R::Database> + Decode<'r, R::Database> + ColumnIndex<R>,
impl StructuralPartialEq for SqlEvent
Auto Trait Implementations§
impl Freeze for SqlEvent
impl RefUnwindSafe for SqlEvent
impl Send for SqlEvent
impl Sync for SqlEvent
impl Unpin for SqlEvent
impl UnwindSafe for SqlEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more