pub struct PatchedEndpointRequest {
pub name: Option<String>,
pub provider: Option<i32>,
pub protocol: Option<ProtocolEnum>,
pub host: Option<String>,
pub settings: Option<Option<Value>>,
pub property_mappings: Option<Vec<Uuid>>,
pub auth_mode: Option<AuthModeEnum>,
pub maximum_connections: Option<i32>,
}
Expand description
PatchedEndpointRequest : Endpoint Serializer
Fields§
§name: Option<String>
§provider: Option<i32>
§protocol: Option<ProtocolEnum>
§host: Option<String>
§settings: Option<Option<Value>>
§property_mappings: Option<Vec<Uuid>>
§auth_mode: Option<AuthModeEnum>
§maximum_connections: Option<i32>
Implementations§
Source§impl PatchedEndpointRequest
impl PatchedEndpointRequest
Sourcepub fn new() -> PatchedEndpointRequest
pub fn new() -> PatchedEndpointRequest
Endpoint Serializer
Trait Implementations§
Source§impl Clone for PatchedEndpointRequest
impl Clone for PatchedEndpointRequest
Source§fn clone(&self) -> PatchedEndpointRequest
fn clone(&self) -> PatchedEndpointRequest
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 PatchedEndpointRequest
impl Debug for PatchedEndpointRequest
Source§impl Default for PatchedEndpointRequest
impl Default for PatchedEndpointRequest
Source§fn default() -> PatchedEndpointRequest
fn default() -> PatchedEndpointRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedEndpointRequest
impl<'de> Deserialize<'de> for PatchedEndpointRequest
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 PatchedEndpointRequest
impl PartialEq for PatchedEndpointRequest
Source§impl Serialize for PatchedEndpointRequest
impl Serialize for PatchedEndpointRequest
impl StructuralPartialEq for PatchedEndpointRequest
Auto Trait Implementations§
impl Freeze for PatchedEndpointRequest
impl RefUnwindSafe for PatchedEndpointRequest
impl Send for PatchedEndpointRequest
impl Sync for PatchedEndpointRequest
impl Unpin for PatchedEndpointRequest
impl UnwindSafe for PatchedEndpointRequest
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