pub struct SingleEditResponse {
pub success: bool,
pub message: Option<String>,
pub album_info: Option<String>,
pub exact_scrobble_edit: ExactScrobbleEdit,
}Expand description
Response from a single scrobble edit operation.
This structure contains the result of attempting to edit a specific scrobble instance, including success status and any error messages.
Fields§
§success: boolWhether this individual edit operation was successful
message: Option<String>Optional message describing the result or any errors
album_info: Option<String>Information about which album variation was edited
exact_scrobble_edit: ExactScrobbleEditThe exact scrobble edit that was performed
Trait Implementations§
Source§impl Clone for SingleEditResponse
impl Clone for SingleEditResponse
Source§fn clone(&self) -> SingleEditResponse
fn clone(&self) -> SingleEditResponse
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 SingleEditResponse
impl Debug for SingleEditResponse
Source§impl<'de> Deserialize<'de> for SingleEditResponse
impl<'de> Deserialize<'de> for SingleEditResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SingleEditResponse
impl PartialEq for SingleEditResponse
Source§impl Serialize for SingleEditResponse
impl Serialize for SingleEditResponse
impl Eq for SingleEditResponse
impl StructuralPartialEq for SingleEditResponse
Auto Trait Implementations§
impl Freeze for SingleEditResponse
impl RefUnwindSafe for SingleEditResponse
impl Send for SingleEditResponse
impl Sync for SingleEditResponse
impl Unpin for SingleEditResponse
impl UnwindSafe for SingleEditResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.