pub struct PodList {
pub count: u64,
pub pods: Vec<Pod>,
pub next_page_token: Option<String>,
}Expand description
One page of pods from Client::list_pods_page.
Fields§
§count: u64Total pods in the account (not just this page).
pods: Vec<Pod>This page of pods.
next_page_token: Option<String>Cursor for the next page; None on the last page.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PodList
impl<'de> Deserialize<'de> for PodList
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
Auto Trait Implementations§
impl Freeze for PodList
impl RefUnwindSafe for PodList
impl Send for PodList
impl Sync for PodList
impl Unpin for PodList
impl UnsafeUnpin for PodList
impl UnwindSafe for PodList
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