pub struct ITunesOwner {
pub name: Option<String>,
pub email: Option<String>,
}Expand description
The contact information for the owner of an iTunes podcast.
Fields§
§name: Option<String>The name of the owner.
email: Option<String>The email of the email.
Trait Implementations§
Source§impl Clone for ITunesOwner
impl Clone for ITunesOwner
Source§fn clone(&self) -> ITunesOwner
fn clone(&self) -> ITunesOwner
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 ITunesOwner
impl Debug for ITunesOwner
Source§impl Default for ITunesOwner
impl Default for ITunesOwner
Source§fn default() -> ITunesOwner
fn default() -> ITunesOwner
Returns the “default value” for a type. Read more
Source§impl PartialEq for ITunesOwner
impl PartialEq for ITunesOwner
impl StructuralPartialEq for ITunesOwner
Auto Trait Implementations§
impl Freeze for ITunesOwner
impl RefUnwindSafe for ITunesOwner
impl Send for ITunesOwner
impl Sync for ITunesOwner
impl Unpin for ITunesOwner
impl UnwindSafe for ITunesOwner
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