pub struct ProjectionCursors {
pub step: Option<u64>,
pub trace: Option<u64>,
pub trace_step: Option<u64>,
pub session_entry: Option<u64>,
pub session_event: Option<u64>,
pub settings: Option<u64>,
pub follow_ups: Option<u64>,
pub updates: Option<u64>,
}Fields§
§step: Option<u64>§trace: Option<u64>§trace_step: Option<u64>§session_entry: Option<u64>§session_event: Option<u64>§settings: Option<u64>§follow_ups: Option<u64>§updates: Option<u64>Trait Implementations§
Source§impl Clone for ProjectionCursors
impl Clone for ProjectionCursors
Source§fn clone(&self) -> ProjectionCursors
fn clone(&self) -> ProjectionCursors
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ProjectionCursors
Source§impl Debug for ProjectionCursors
impl Debug for ProjectionCursors
Source§impl Default for ProjectionCursors
impl Default for ProjectionCursors
Source§fn default() -> ProjectionCursors
fn default() -> ProjectionCursors
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProjectionCursors
impl RefUnwindSafe for ProjectionCursors
impl Send for ProjectionCursors
impl Sync for ProjectionCursors
impl Unpin for ProjectionCursors
impl UnsafeUnpin for ProjectionCursors
impl UnwindSafe for ProjectionCursors
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> 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