pub struct ArtifactPage {
pub items: Vec<ArtifactRef>,
pub next_cursor: Option<String>,
}Expand description
One bounded page of artifact references in stable identity order.
Fields§
§items: Vec<ArtifactRef>References visible in the requested scope.
next_cursor: Option<String>Exclusive cursor for the next page.
Trait Implementations§
Source§impl Clone for ArtifactPage
impl Clone for ArtifactPage
Source§fn clone(&self) -> ArtifactPage
fn clone(&self) -> ArtifactPage
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 ArtifactPage
impl Debug for ArtifactPage
Source§impl<'de> Deserialize<'de> for ArtifactPage
impl<'de> Deserialize<'de> for ArtifactPage
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 ArtifactPage
Source§impl PartialEq for ArtifactPage
impl PartialEq for ArtifactPage
Source§impl Serialize for ArtifactPage
impl Serialize for ArtifactPage
impl StructuralPartialEq for ArtifactPage
Auto Trait Implementations§
impl Freeze for ArtifactPage
impl RefUnwindSafe for ArtifactPage
impl Send for ArtifactPage
impl Sync for ArtifactPage
impl Unpin for ArtifactPage
impl UnsafeUnpin for ArtifactPage
impl UnwindSafe for ArtifactPage
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