pub struct ScoreCredit {
pub key: ScoreCreditKey,
pub value: Vec<String>,
}Expand description
A generic storage class for credits, such as for the composer, arranger, lyricist, etc.
There can be multiple values for a single key, such as multiple composers, this should be used instead of commas.
Fields§
§key: ScoreCreditKey§value: Vec<String>Trait Implementations§
Source§impl Clone for ScoreCredit
impl Clone for ScoreCredit
Source§fn clone(&self) -> ScoreCredit
fn clone(&self) -> ScoreCredit
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 moreAuto Trait Implementations§
impl Freeze for ScoreCredit
impl RefUnwindSafe for ScoreCredit
impl Send for ScoreCredit
impl Sync for ScoreCredit
impl Unpin for ScoreCredit
impl UnwindSafe for ScoreCredit
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