pub struct TeamMemorySyncFetchResult {
pub success: bool,
pub data: Option<TeamMemoryData>,
pub is_empty: Option<bool>,
pub not_modified: Option<bool>,
pub checksum: Option<String>,
pub error: Option<String>,
pub skip_retry: Option<bool>,
pub error_type: Option<String>,
pub http_status: Option<u16>,
}Expand description
Result from fetching team memory
Fields§
§success: bool§data: Option<TeamMemoryData>§is_empty: Option<bool>true if 404 (no data exists)
not_modified: Option<bool>true if 304 (ETag matched, no changes)
checksum: Option<String>ETag from response header
error: Option<String>§skip_retry: Option<bool>§error_type: Option<String>§http_status: Option<u16>Trait Implementations§
Source§impl Clone for TeamMemorySyncFetchResult
impl Clone for TeamMemorySyncFetchResult
Source§fn clone(&self) -> TeamMemorySyncFetchResult
fn clone(&self) -> TeamMemorySyncFetchResult
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 TeamMemorySyncFetchResult
impl Debug for TeamMemorySyncFetchResult
Source§impl<'de> Deserialize<'de> for TeamMemorySyncFetchResult
impl<'de> Deserialize<'de> for TeamMemorySyncFetchResult
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 TeamMemorySyncFetchResult
impl RefUnwindSafe for TeamMemorySyncFetchResult
impl Send for TeamMemorySyncFetchResult
impl Sync for TeamMemorySyncFetchResult
impl Unpin for TeamMemorySyncFetchResult
impl UnsafeUnpin for TeamMemorySyncFetchResult
impl UnwindSafe for TeamMemorySyncFetchResult
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