pub struct AuthoredTicket {
pub frontmatter: Frontmatter,
pub body: String,
pub source: String,
pub source_ref: String,
pub file_path: Option<PathBuf>,
pub original_content: Option<String>,
pub validation_error: Option<String>,
}Fields§
§frontmatter: Frontmatter§body: String§source: String§source_ref: String§file_path: Option<PathBuf>§original_content: Option<String>§validation_error: Option<String>Trait Implementations§
Source§impl Clone for AuthoredTicket
impl Clone for AuthoredTicket
Source§fn clone(&self) -> AuthoredTicket
fn clone(&self) -> AuthoredTicket
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 moreAuto Trait Implementations§
impl Freeze for AuthoredTicket
impl RefUnwindSafe for AuthoredTicket
impl Send for AuthoredTicket
impl Sync for AuthoredTicket
impl Unpin for AuthoredTicket
impl UnsafeUnpin for AuthoredTicket
impl UnwindSafe for AuthoredTicket
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