pub struct FetchResponse {
pub status: u16,
pub etag: Option<String>,
pub config: Option<HashMap<String, String>>,
pub template_version: Option<u64>,
}Expand description
Minimal representation of the Remote Config REST response.
Fields§
§status: u16§etag: Option<String>§config: Option<HashMap<String, String>>§template_version: Option<u64>Trait Implementations§
Source§impl Clone for FetchResponse
impl Clone for FetchResponse
Source§fn clone(&self) -> FetchResponse
fn clone(&self) -> FetchResponse
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 FetchResponse
impl Debug for FetchResponse
Source§impl Default for FetchResponse
impl Default for FetchResponse
Source§fn default() -> FetchResponse
fn default() -> FetchResponse
Returns the “default value” for a type. Read more
Source§impl PartialEq for FetchResponse
impl PartialEq for FetchResponse
impl StructuralPartialEq for FetchResponse
Auto Trait Implementations§
impl Freeze for FetchResponse
impl RefUnwindSafe for FetchResponse
impl Send for FetchResponse
impl Sync for FetchResponse
impl Unpin for FetchResponse
impl UnwindSafe for FetchResponse
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