pub struct PorterAuthor {
pub id: i32,
pub remote_id: String,
pub remote_name: String,
pub email: String,
pub name: String,
pub url: String,
pub import_url: String,
}
Expand description
PorterAuthor : Porter Author
Fields§
§id: i32
§remote_id: String
§remote_name: String
§email: String
§name: String
§url: String
§import_url: String
Implementations§
Trait Implementations§
Source§impl Clone for PorterAuthor
impl Clone for PorterAuthor
Source§fn clone(&self) -> PorterAuthor
fn clone(&self) -> PorterAuthor
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 PorterAuthor
impl Debug for PorterAuthor
Source§impl Default for PorterAuthor
impl Default for PorterAuthor
Source§fn default() -> PorterAuthor
fn default() -> PorterAuthor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PorterAuthor
impl<'de> Deserialize<'de> for PorterAuthor
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 PartialEq for PorterAuthor
impl PartialEq for PorterAuthor
Source§impl Serialize for PorterAuthor
impl Serialize for PorterAuthor
impl StructuralPartialEq for PorterAuthor
Auto Trait Implementations§
impl Freeze for PorterAuthor
impl RefUnwindSafe for PorterAuthor
impl Send for PorterAuthor
impl Sync for PorterAuthor
impl Unpin for PorterAuthor
impl UnwindSafe for PorterAuthor
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