pub enum VersionListResult {
Success {
versions: Vec<VersionInfo>,
next_cursor: Option<String>,
total_count: Option<usize>,
},
Error {
reason: String,
},
}Expand description
Result of fetching a list of versions.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VersionListResult
impl RefUnwindSafe for VersionListResult
impl Send for VersionListResult
impl Sync for VersionListResult
impl Unpin for VersionListResult
impl UnsafeUnpin for VersionListResult
impl UnwindSafe for VersionListResult
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