pub struct JournalEntryOutput {
pub id: String,
pub entry_number: String,
pub entry_date: String,
pub description: String,
pub status: String,
pub created_at: String,
}Fields§
§id: String§entry_number: String§entry_date: String§description: String§status: String§created_at: StringTrait Implementations§
Source§impl Clone for JournalEntryOutput
impl Clone for JournalEntryOutput
Source§fn clone(&self) -> JournalEntryOutput
fn clone(&self) -> JournalEntryOutput
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<'de> Deserialize<'de> for JournalEntryOutput
impl<'de> Deserialize<'de> for JournalEntryOutput
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
Source§impl From<JournalEntry> for JournalEntryOutput
impl From<JournalEntry> for JournalEntryOutput
Source§fn from(e: JournalEntry) -> Self
fn from(e: JournalEntry) -> Self
Converts to this type from the input type.
Source§impl FromNapiValue for JournalEntryOutput
impl FromNapiValue for JournalEntryOutput
Source§unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
Safety Read more
fn from_unknown(value: JsUnknown) -> Result<Self, Error>
Source§impl Serialize for JournalEntryOutput
impl Serialize for JournalEntryOutput
Source§impl ToNapiValue for JournalEntryOutput
impl ToNapiValue for JournalEntryOutput
Source§unsafe fn to_napi_value(
env: napi_env,
val: JournalEntryOutput,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: JournalEntryOutput, ) -> Result<napi_value>
Safety Read more
Source§impl TypeName for JournalEntryOutput
impl TypeName for JournalEntryOutput
Source§impl ValidateNapiValue for JournalEntryOutput
impl ValidateNapiValue for JournalEntryOutput
Source§unsafe fn validate(
env: *mut napi_env__,
napi_val: *mut napi_value__,
) -> Result<*mut napi_value__, Error>
unsafe fn validate( env: *mut napi_env__, napi_val: *mut napi_value__, ) -> Result<*mut napi_value__, Error>
Safety Read more
Auto Trait Implementations§
impl Freeze for JournalEntryOutput
impl RefUnwindSafe for JournalEntryOutput
impl Send for JournalEntryOutput
impl Sync for JournalEntryOutput
impl Unpin for JournalEntryOutput
impl UnsafeUnpin for JournalEntryOutput
impl UnwindSafe for JournalEntryOutput
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