pub struct ArchiveResponse {
pub archive: Option<String>,
pub total_count: Option<f64>,
pub database_version: Option<f64>,
pub includes_dependencies: Option<Vec<String>>,
}Expand description
Contains requested archived model objects.
Fields§
§archive: Option<String>A JSON serialized collection of model objects loaded from the archive
total_count: Option<f64>The total number of entities in the archive.
database_version: Option<f64>The version of the remote database. Incremented by 1 for each migration run on the database.
includes_dependencies: Option<Vec<String>>Whether the dependencies for the model objects are included in the archive.
Trait Implementations§
Source§impl Clone for ArchiveResponse
impl Clone for ArchiveResponse
Source§fn clone(&self) -> ArchiveResponse
fn clone(&self) -> ArchiveResponse
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 ArchiveResponse
impl Debug for ArchiveResponse
Source§impl Default for ArchiveResponse
impl Default for ArchiveResponse
Source§fn default() -> ArchiveResponse
fn default() -> ArchiveResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ArchiveResponsewhere
ArchiveResponse: Default,
impl<'de> Deserialize<'de> for ArchiveResponsewhere
ArchiveResponse: Default,
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
Source§impl GraphQLFields for ArchiveResponse
impl GraphQLFields for ArchiveResponse
Auto Trait Implementations§
impl Freeze for ArchiveResponse
impl RefUnwindSafe for ArchiveResponse
impl Send for ArchiveResponse
impl Sync for ArchiveResponse
impl Unpin for ArchiveResponse
impl UnwindSafe for ArchiveResponse
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