pub enum ReportUploadLocationDestination {
RustyPaste {
url: String,
},
GithubIssue {
owner: String,
repo: String,
tags: Vec<String>,
},
}
Variants§
Trait Implementations§
source§impl Clone for ReportUploadLocationDestination
impl Clone for ReportUploadLocationDestination
source§fn clone(&self) -> ReportUploadLocationDestination
fn clone(&self) -> ReportUploadLocationDestination
Returns a copy 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 PartialEq for ReportUploadLocationDestination
impl PartialEq for ReportUploadLocationDestination
source§fn eq(&self, other: &ReportUploadLocationDestination) -> bool
fn eq(&self, other: &ReportUploadLocationDestination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReportUploadLocationDestination
Auto Trait Implementations§
impl RefUnwindSafe for ReportUploadLocationDestination
impl Send for ReportUploadLocationDestination
impl Sync for ReportUploadLocationDestination
impl Unpin for ReportUploadLocationDestination
impl UnwindSafe for ReportUploadLocationDestination
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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