pub struct ScimAttributePath {
pub attribute: String,
pub value_filter: Option<Box<ScimFilterExpression>>,
pub sub_attribute: Option<String>,
}Fields§
§attribute: String§value_filter: Option<Box<ScimFilterExpression>>§sub_attribute: Option<String>Implementations§
Source§impl ScimAttributePath
impl ScimAttributePath
pub fn value_path( attribute: impl Into<String>, value_filter: ScimFilterExpression, sub_attribute: Option<&str>, ) -> Self
Trait Implementations§
Source§impl Clone for ScimAttributePath
impl Clone for ScimAttributePath
Source§fn clone(&self) -> ScimAttributePath
fn clone(&self) -> ScimAttributePath
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 ScimAttributePath
impl Debug for ScimAttributePath
Source§impl From<&str> for ScimAttributePath
impl From<&str> for ScimAttributePath
Source§impl PartialEq for ScimAttributePath
impl PartialEq for ScimAttributePath
Source§fn eq(&self, other: &ScimAttributePath) -> bool
fn eq(&self, other: &ScimAttributePath) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScimAttributePath
Auto Trait Implementations§
impl Freeze for ScimAttributePath
impl RefUnwindSafe for ScimAttributePath
impl Send for ScimAttributePath
impl Sync for ScimAttributePath
impl Unpin for ScimAttributePath
impl UnsafeUnpin for ScimAttributePath
impl UnwindSafe for ScimAttributePath
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