pub struct FindingTitleEntry {
pub title: String,
pub account: String,
}Expand description
A single finding-title entry.
Fields§
§title: StringThe finding title shown in workpapers.
account: StringAccount/area affected — paired with the title so the generator doesn’t accidentally tag a journal-entry finding to an unrelated account like “Property, Plant & Equipment”.
Trait Implementations§
Source§impl Clone for FindingTitleEntry
impl Clone for FindingTitleEntry
Source§fn clone(&self) -> FindingTitleEntry
fn clone(&self) -> FindingTitleEntry
Returns a duplicate 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 Debug for FindingTitleEntry
impl Debug for FindingTitleEntry
Source§impl<'de> Deserialize<'de> for FindingTitleEntry
impl<'de> Deserialize<'de> for FindingTitleEntry
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
Auto Trait Implementations§
impl Freeze for FindingTitleEntry
impl RefUnwindSafe for FindingTitleEntry
impl Send for FindingTitleEntry
impl Sync for FindingTitleEntry
impl Unpin for FindingTitleEntry
impl UnsafeUnpin for FindingTitleEntry
impl UnwindSafe for FindingTitleEntry
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