pub struct B2ListFileVersionsResponse {
pub files: Vec<B2File>,
pub next_file_name: Option<String>,
pub next_file_id: Option<String>,
}Fields§
§files: Vec<B2File>Array of B2 files.
next_file_name: Option<String>What to pass in to startFileName for the next search to continue where this one left off, or null if there are no more files. Note this this may not be the name of an actual file, but using it is guaranteed to find the next file version in the bucket.
next_file_id: Option<String>What to pass in to startFileId for the next search to continue where this one left off, or null if there are no more files. Note this this may not be the ID of an actual file, but using it is guaranteed to find the next file version in the bucket.
Trait Implementations§
Source§impl Clone for B2ListFileVersionsResponse
impl Clone for B2ListFileVersionsResponse
Source§fn clone(&self) -> B2ListFileVersionsResponse
fn clone(&self) -> B2ListFileVersionsResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 B2ListFileVersionsResponse
impl Debug for B2ListFileVersionsResponse
Source§impl<'de> Deserialize<'de> for B2ListFileVersionsResponse
impl<'de> Deserialize<'de> for B2ListFileVersionsResponse
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 B2ListFileVersionsResponse
impl RefUnwindSafe for B2ListFileVersionsResponse
impl Send for B2ListFileVersionsResponse
impl Sync for B2ListFileVersionsResponse
impl Unpin for B2ListFileVersionsResponse
impl UnwindSafe for B2ListFileVersionsResponse
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