pub struct FetchRequest {
pub app_id: String,
pub namespace_name: String,
pub cluster_name: String,
pub ip: Option<IpValue>,
pub release_key: Option<String>,
pub extras_queries: Vec<(String, String)>,
pub access_key: Option<String>,
}Available on crate feature
conf only.Expand description
Request configuration without cache.
Fields§
§app_id: String§namespace_name: String§cluster_name: String§ip: Option<IpValue>§release_key: Option<String>§extras_queries: Vec<(String, String)>§access_key: Option<String>Available on crate feature
auth only.Trait Implementations§
Source§impl Clone for FetchRequest
impl Clone for FetchRequest
Source§fn clone(&self) -> FetchRequest
fn clone(&self) -> FetchRequest
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 FetchRequest
impl Debug for FetchRequest
Auto Trait Implementations§
impl Freeze for FetchRequest
impl RefUnwindSafe for FetchRequest
impl Send for FetchRequest
impl Sync for FetchRequest
impl Unpin for FetchRequest
impl UnwindSafe for FetchRequest
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