pub struct ServiceQueryAPIEndpoint {
pub allowed_origins: String,
pub id: String,
pub open_api_keys: Vec<String>,
pub roles: Vec<String>,
}Expand description
ServiceQueryAPIEndpoint from the ClickHouse Cloud API.
Fields§
§allowed_origins: String§id: String§open_api_keys: Vec<String>§roles: Vec<String>Trait Implementations§
Source§impl Clone for ServiceQueryAPIEndpoint
impl Clone for ServiceQueryAPIEndpoint
Source§fn clone(&self) -> ServiceQueryAPIEndpoint
fn clone(&self) -> ServiceQueryAPIEndpoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ServiceQueryAPIEndpoint
impl Debug for ServiceQueryAPIEndpoint
Source§impl Default for ServiceQueryAPIEndpoint
impl Default for ServiceQueryAPIEndpoint
Source§fn default() -> ServiceQueryAPIEndpoint
fn default() -> ServiceQueryAPIEndpoint
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceQueryAPIEndpoint
impl<'de> Deserialize<'de> for ServiceQueryAPIEndpoint
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 PartialEq for ServiceQueryAPIEndpoint
impl PartialEq for ServiceQueryAPIEndpoint
Source§fn eq(&self, other: &ServiceQueryAPIEndpoint) -> bool
fn eq(&self, other: &ServiceQueryAPIEndpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceQueryAPIEndpoint
impl Serialize for ServiceQueryAPIEndpoint
impl StructuralPartialEq for ServiceQueryAPIEndpoint
Auto Trait Implementations§
impl Freeze for ServiceQueryAPIEndpoint
impl RefUnwindSafe for ServiceQueryAPIEndpoint
impl Send for ServiceQueryAPIEndpoint
impl Sync for ServiceQueryAPIEndpoint
impl Unpin for ServiceQueryAPIEndpoint
impl UnsafeUnpin for ServiceQueryAPIEndpoint
impl UnwindSafe for ServiceQueryAPIEndpoint
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