pub struct WatchRequest {
pub app_id: String,
pub namespace_names: Vec<String>,
pub cluster_name: String,
pub ip: Option<IpValue>,
pub extras_queries: Vec<(String, String)>,
pub access_key: Option<String>,
}Available on crate feature
conf only.Expand description
watch multi namespaces.
Can only be used in crate::conf::ApolloConfClient::watch.
Fields§
§app_id: String§namespace_names: Vec<String>§cluster_name: String§ip: Option<IpValue>§extras_queries: Vec<(String, String)>§access_key: Option<String>Available on crate feature
auth only.Trait Implementations§
Source§impl Clone for WatchRequest
impl Clone for WatchRequest
Source§fn clone(&self) -> WatchRequest
fn clone(&self) -> WatchRequest
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 WatchRequest
impl Debug for WatchRequest
Auto Trait Implementations§
impl Freeze for WatchRequest
impl RefUnwindSafe for WatchRequest
impl Send for WatchRequest
impl Sync for WatchRequest
impl Unpin for WatchRequest
impl UnwindSafe for WatchRequest
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