pub struct RuleTransformationPreview {
pub original_track_name: String,
pub original_artist_name: String,
pub original_album_name: Option<String>,
pub original_album_artist_name: Option<String>,
pub transformed_track_name: Option<String>,
pub transformed_artist_name: Option<String>,
pub transformed_album_name: Option<String>,
pub transformed_album_artist_name: Option<String>,
}Expand description
Preview of rule transformation showing changes
Fields§
§original_track_name: String§original_artist_name: String§original_album_name: Option<String>§original_album_artist_name: Option<String>§transformed_track_name: Option<String>§transformed_artist_name: Option<String>§transformed_album_name: Option<String>§transformed_album_artist_name: Option<String>Trait Implementations§
Source§impl Clone for RuleTransformationPreview
impl Clone for RuleTransformationPreview
Source§fn clone(&self) -> RuleTransformationPreview
fn clone(&self) -> RuleTransformationPreview
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RuleTransformationPreview
impl RefUnwindSafe for RuleTransformationPreview
impl Send for RuleTransformationPreview
impl Sync for RuleTransformationPreview
impl Unpin for RuleTransformationPreview
impl UnsafeUnpin for RuleTransformationPreview
impl UnwindSafe for RuleTransformationPreview
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