pub struct MediaCredit {
pub role: Option<String>,
pub scheme: Option<String>,
pub content: String,
}Expand description
Media RSS credit element (media:credit)
Fields§
§role: Option<String>Credit role (e.g., “author”, “producer”)
scheme: Option<String>Credit scheme URI (default: “urn:ebu”)
content: StringCredit text content (person/entity name)
Trait Implementations§
Source§impl Clone for MediaCredit
impl Clone for MediaCredit
Source§fn clone(&self) -> MediaCredit
fn clone(&self) -> MediaCredit
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 MediaCredit
impl Debug for MediaCredit
Source§impl Default for MediaCredit
impl Default for MediaCredit
Source§fn default() -> MediaCredit
fn default() -> MediaCredit
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MediaCredit
impl RefUnwindSafe for MediaCredit
impl Send for MediaCredit
impl Sync for MediaCredit
impl Unpin for MediaCredit
impl UnsafeUnpin for MediaCredit
impl UnwindSafe for MediaCredit
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