pub struct PublishErrorResponse {
    pub publisher_id: u8,
    pub publishing_errors: Vec<PublishingError>,
}Fields
publisher_id: u8publishing_errors: Vec<PublishingError>Implementations
sourceimpl PublishErrorResponse
 
impl PublishErrorResponse
pub fn new(publisher_id: u8, publishing_errors: Vec<PublishingError>) -> Self
Trait Implementations
sourceimpl Debug for PublishErrorResponse
 
impl Debug for PublishErrorResponse
sourceimpl Decoder for PublishErrorResponse
 
impl Decoder for PublishErrorResponse
sourceimpl Encoder for PublishErrorResponse
 
impl Encoder for PublishErrorResponse
fn encode(&self, writer: &mut impl Write) -> Result<(), EncodeError>
fn encoded_size(&self) -> u32
sourceimpl PartialEq<PublishErrorResponse> for PublishErrorResponse
 
impl PartialEq<PublishErrorResponse> for PublishErrorResponse
sourcefn eq(&self, other: &PublishErrorResponse) -> bool
 
fn eq(&self, other: &PublishErrorResponse) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PublishErrorResponse) -> bool
 
fn ne(&self, other: &PublishErrorResponse) -> bool
This method tests for !=.
impl StructuralPartialEq for PublishErrorResponse
Auto Trait Implementations
impl RefUnwindSafe for PublishErrorResponse
impl Send for PublishErrorResponse
impl Sync for PublishErrorResponse
impl Unpin for PublishErrorResponse
impl UnwindSafe for PublishErrorResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more