pub struct PluginConfigUser {
pub gid: Option<i32>,
pub uid: Option<i32>,
}Expand description
PluginConfigUser plugin config user
Fields§
§gid: Option<i32>g ID
uid: Option<i32>UID
Implementations§
Source§impl PluginConfigUser
impl PluginConfigUser
pub fn new() -> PluginConfigUser
Trait Implementations§
Source§impl Clone for PluginConfigUser
impl Clone for PluginConfigUser
Source§fn clone(&self) -> PluginConfigUser
fn clone(&self) -> PluginConfigUser
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 PluginConfigUser
impl Debug for PluginConfigUser
Source§impl<'de> Deserialize<'de> for PluginConfigUser
impl<'de> Deserialize<'de> for PluginConfigUser
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 FromStr for PluginConfigUser
Converts Query Parameters representation (style=form, explode=false) to a PluginConfigUser value
as specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde deserializer
impl FromStr for PluginConfigUser
Converts Query Parameters representation (style=form, explode=false) to a PluginConfigUser value as specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde deserializer
Source§impl PartialEq for PluginConfigUser
impl PartialEq for PluginConfigUser
Source§fn eq(&self, other: &PluginConfigUser) -> bool
fn eq(&self, other: &PluginConfigUser) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PluginConfigUser
impl Serialize for PluginConfigUser
impl StructuralPartialEq for PluginConfigUser
Source§impl ToString for PluginConfigUser
Converts the PluginConfigUser value to the Query Parameters representation (style=form, explode=false)
specified in https://swagger.io/docs/specification/serialization/
Should be implemented in a serde serializer
impl ToString for PluginConfigUser
Converts the PluginConfigUser value to the Query Parameters representation (style=form, explode=false) specified in https://swagger.io/docs/specification/serialization/ Should be implemented in a serde serializer
Source§impl Validate for PluginConfigUser
impl Validate for PluginConfigUser
Source§impl<'v_a> ValidateArgs<'v_a> for PluginConfigUser
impl<'v_a> ValidateArgs<'v_a> for PluginConfigUser
Auto Trait Implementations§
impl Freeze for PluginConfigUser
impl RefUnwindSafe for PluginConfigUser
impl Send for PluginConfigUser
impl Sync for PluginConfigUser
impl Unpin for PluginConfigUser
impl UnsafeUnpin for PluginConfigUser
impl UnwindSafe for PluginConfigUser
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