pub struct EnvironmentAttachmentPage {
pub items: Vec<DurableEnvironmentAttachment>,
pub next: Option<EnvironmentAttachmentPageKeyProjection>,
}Expand description
Stable bounded attachment page.
Fields§
§items: Vec<DurableEnvironmentAttachment>Items ordered by (updated_at DESC, attachment_id DESC).
next: Option<EnvironmentAttachmentPageKeyProjection>Exclusive key for the next page.
Trait Implementations§
Source§impl Clone for EnvironmentAttachmentPage
impl Clone for EnvironmentAttachmentPage
Source§fn clone(&self) -> EnvironmentAttachmentPage
fn clone(&self) -> EnvironmentAttachmentPage
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 moreSource§impl Debug for EnvironmentAttachmentPage
impl Debug for EnvironmentAttachmentPage
Source§impl<'de> Deserialize<'de> for EnvironmentAttachmentPage
impl<'de> Deserialize<'de> for EnvironmentAttachmentPage
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
impl Eq for EnvironmentAttachmentPage
impl StructuralPartialEq for EnvironmentAttachmentPage
Auto Trait Implementations§
impl Freeze for EnvironmentAttachmentPage
impl RefUnwindSafe for EnvironmentAttachmentPage
impl Send for EnvironmentAttachmentPage
impl Sync for EnvironmentAttachmentPage
impl Unpin for EnvironmentAttachmentPage
impl UnsafeUnpin for EnvironmentAttachmentPage
impl UnwindSafe for EnvironmentAttachmentPage
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