pub struct Program {
pub id: ProgramId,
pub created_date_time: DateTime<Utc>,
pub modification_date_time: DateTime<Utc>,
pub content: ProgramContent,
}
Expand description
Provides program specific metadata from VTN to VEN.
Fields§
§id: ProgramId
VTN provisioned on object creation.
URL safe VTN assigned object ID.
created_date_time: DateTime<Utc>
VTN provisioned on object creation.
datetime in ISO 8601 format
modification_date_time: DateTime<Utc>
VTN provisioned on object modification.
datetime in ISO 8601 format
content: ProgramContent
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Program
impl<'de> Deserialize<'de> for Program
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<'v_a> ValidateArgs<'v_a> for Program
impl<'v_a> ValidateArgs<'v_a> for Program
impl StructuralPartialEq for Program
Auto Trait Implementations§
impl Freeze for Program
impl RefUnwindSafe for Program
impl Send for Program
impl Sync for Program
impl Unpin for Program
impl UnwindSafe for Program
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