pub struct ListVersionsResult {
pub versions: Vec<Version>,
pub next_page_token: Option<String>,
}Expand description
The result of listing versions.
Fields§
§versions: Vec<Version>The list of versions.
next_page_token: Option<String>The token for the next page of results.
Trait Implementations§
Source§impl Debug for ListVersionsResult
impl Debug for ListVersionsResult
Source§impl<'de> Deserialize<'de> for ListVersionsResult
impl<'de> Deserialize<'de> for ListVersionsResult
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 ListVersionsResult
impl RefUnwindSafe for ListVersionsResult
impl Send for ListVersionsResult
impl Sync for ListVersionsResult
impl Unpin for ListVersionsResult
impl UnwindSafe for ListVersionsResult
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