pub struct ClientPropertyIDMap {
pub any: Option<Set<Any>>,
pub value: ClientPropertyIDMapValue,
}Fields§
§any: Option<Set<Any>>§value: ClientPropertyIDMapValueImplementations§
Source§impl ClientPropertyIDMap
impl ClientPropertyIDMap
pub fn from_client_property_id_map_value( client_property_id_map_value: ClientPropertyIDMapValue, ) -> ClientPropertyIDMap
Trait Implementations§
Source§impl Clone for ClientPropertyIDMap
impl Clone for ClientPropertyIDMap
Source§fn clone(&self) -> ClientPropertyIDMap
fn clone(&self) -> ClientPropertyIDMap
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 ClientPropertyIDMap
impl Debug for ClientPropertyIDMap
Source§impl Display for ClientPropertyIDMap
impl Display for ClientPropertyIDMap
Source§impl Hash for ClientPropertyIDMap
impl Hash for ClientPropertyIDMap
Source§impl PartialEq for ClientPropertyIDMap
impl PartialEq for ClientPropertyIDMap
Source§impl Property for ClientPropertyIDMap
impl Property for ClientPropertyIDMap
impl Eq for ClientPropertyIDMap
impl StructuralPartialEq for ClientPropertyIDMap
impl Validated for ClientPropertyIDMap
Auto Trait Implementations§
impl Freeze for ClientPropertyIDMap
impl RefUnwindSafe for ClientPropertyIDMap
impl Send for ClientPropertyIDMap
impl Sync for ClientPropertyIDMap
impl Unpin for ClientPropertyIDMap
impl UnwindSafe for ClientPropertyIDMap
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more