pub struct EditAnalysisResult {
pub success: bool,
pub message: Option<String>,
pub actual_track_name: Option<String>,
pub actual_album_name: Option<String>,
}Expand description
Result of analyzing an edit response from Last.fm
Fields§
§success: boolWhether the edit was successful based on all indicators
message: Option<String>Optional detailed message about the result
actual_track_name: Option<String>Track name found in the response (if any)
actual_album_name: Option<String>Album name found in the response (if any)
Trait Implementations§
Source§impl Clone for EditAnalysisResult
impl Clone for EditAnalysisResult
Source§fn clone(&self) -> EditAnalysisResult
fn clone(&self) -> EditAnalysisResult
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 EditAnalysisResult
impl RefUnwindSafe for EditAnalysisResult
impl Send for EditAnalysisResult
impl Sync for EditAnalysisResult
impl Unpin for EditAnalysisResult
impl UnwindSafe for EditAnalysisResult
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