pub struct Bug {
pub email: Option<String>,
pub url: Option<String>,
}
Expand description
A bug contacting form.
Fields§
§email: Option<String>
The email to use for contact.
url: Option<String>
The url to use to submit bugs.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Bug
impl<'de> Deserialize<'de> for Bug
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
impl Eq for Bug
impl StructuralPartialEq for Bug
Auto Trait Implementations§
impl Freeze for Bug
impl RefUnwindSafe for Bug
impl Send for Bug
impl Sync for Bug
impl Unpin for Bug
impl UnwindSafe for Bug
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