pub struct Computer {
pub computer_attributes: Option<Vec<Attribute>>,
pub computer_id: Option<String>,
pub computer_name: Option<String>,
}
Expand description
Contains information about a computer account in a directory.
Fields§
§computer_attributes: Option<Vec<Attribute>>
An array of Attribute objects containing the LDAP attributes that belong to the computer account.
computer_id: Option<String>
The identifier of the computer.
computer_name: Option<String>
The computer name.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Computer
impl<'de> Deserialize<'de> for Computer
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
impl StructuralPartialEq for Computer
Auto Trait Implementations§
impl Freeze for Computer
impl RefUnwindSafe for Computer
impl Send for Computer
impl Sync for Computer
impl Unpin for Computer
impl UnwindSafe for Computer
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