pub struct ForgeIssue {
pub number: u32,
pub title: String,
pub state: String,
pub author: String,
pub assignees: Vec<String>,
pub url: String,
}Fields§
§number: u32§title: String§state: String§assignees: Vec<String>§url: StringTrait Implementations§
Source§impl Clone for ForgeIssue
impl Clone for ForgeIssue
Source§fn clone(&self) -> ForgeIssue
fn clone(&self) -> ForgeIssue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ForgeIssue
impl Debug for ForgeIssue
Source§impl<'de> Deserialize<'de> for ForgeIssue
impl<'de> Deserialize<'de> for ForgeIssue
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 ForgeIssue
Source§impl PartialEq for ForgeIssue
impl PartialEq for ForgeIssue
Source§impl Serialize for ForgeIssue
impl Serialize for ForgeIssue
impl StructuralPartialEq for ForgeIssue
Auto Trait Implementations§
impl Freeze for ForgeIssue
impl RefUnwindSafe for ForgeIssue
impl Send for ForgeIssue
impl Sync for ForgeIssue
impl Unpin for ForgeIssue
impl UnsafeUnpin for ForgeIssue
impl UnwindSafe for ForgeIssue
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