Struct dae_parser::Contributor
source · [−]pub struct Contributor {
pub author: Option<String>,
pub authoring_tool: Option<String>,
pub comments: Option<String>,
pub copyright: Option<String>,
pub source_data: Option<Url>,
}
Expand description
Defines authoring information for asset management.
Fields
The author’s name
The name of the authoring tool
comments: Option<String>
Comments from this contributor
copyright: Option<String>
Copyright information
source_data: Option<Url>
A reference to the source data used for this asset
Implementations
sourceimpl Contributor
impl Contributor
Trait Implementations
sourceimpl Clone for Contributor
impl Clone for Contributor
sourcefn clone(&self) -> Contributor
fn clone(&self) -> Contributor
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Contributor
impl Debug for Contributor
sourceimpl Default for Contributor
impl Default for Contributor
sourcefn default() -> Contributor
fn default() -> Contributor
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for Contributor
impl Send for Contributor
impl Sync for Contributor
impl Unpin for Contributor
impl UnwindSafe for Contributor
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more