pub struct ServiceEntrySummary {
pub entry_id: i64,
pub title: String,
pub username: String,
pub credential_type: String,
pub favorite: bool,
}Expand description
Wire DTO for one entry summary (no password — bulk listings).
Fields§
§entry_id: i64§title: String§username: String§credential_type: String§favorite: boolTrait Implementations§
Source§impl Clone for ServiceEntrySummary
impl Clone for ServiceEntrySummary
Source§fn clone(&self) -> ServiceEntrySummary
fn clone(&self) -> ServiceEntrySummary
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 ServiceEntrySummary
impl Debug for ServiceEntrySummary
Source§impl<'de> Deserialize<'de> for ServiceEntrySummary
impl<'de> Deserialize<'de> for ServiceEntrySummary
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
Auto Trait Implementations§
impl Freeze for ServiceEntrySummary
impl RefUnwindSafe for ServiceEntrySummary
impl Send for ServiceEntrySummary
impl Sync for ServiceEntrySummary
impl Unpin for ServiceEntrySummary
impl UnsafeUnpin for ServiceEntrySummary
impl UnwindSafe for ServiceEntrySummary
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