pub struct RecentPostsPenEntry {
pub bucket_location: BucketLocation,
pub post_id: Id,
pub encoded_post_bytes: Bytes,
pub time_millis: TimeMillis,
}Fields§
§bucket_location: BucketLocation§post_id: Id§encoded_post_bytes: Bytes§time_millis: TimeMillisAuto Trait Implementations§
impl !Freeze for RecentPostsPenEntry
impl RefUnwindSafe for RecentPostsPenEntry
impl Send for RecentPostsPenEntry
impl Sync for RecentPostsPenEntry
impl Unpin for RecentPostsPenEntry
impl UnsafeUnpin for RecentPostsPenEntry
impl UnwindSafe for RecentPostsPenEntry
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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