pub struct SingleEditResponse {
pub success: bool,
pub message: Option<String>,
pub album_info: Option<String>,
}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
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
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