pub struct ProjectMetadata {
pub filetype: String,
pub project_version: u32,
pub os_version: String,
}Expand description
Project metadata read from a parsed Octatrack Project file
Fields§
§filetype: StringType of file (always a ‘project’).
Example ASCII data:
TYPE=OCTATRACK DPS-1 PROJECTproject_version: u32Unknown. Probably refers to an internal Elektron release version number.
Example ASCII data:
VERSION=19os_version: StringVersion of the Octatrack OS (that the project was created with?).
Example ASCII data:
OS_VERSION=R0177 1.40BTrait Implementations§
Source§impl Clone for ProjectMetadata
impl Clone for ProjectMetadata
Source§fn clone(&self) -> ProjectMetadata
fn clone(&self) -> ProjectMetadata
Returns a copy 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 ProjectMetadata
impl Debug for ProjectMetadata
Source§impl Default for ProjectMetadata
impl Default for ProjectMetadata
Source§impl<'de> Deserialize<'de> for ProjectMetadata
impl<'de> Deserialize<'de> for ProjectMetadata
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 PartialEq for ProjectMetadata
impl PartialEq for ProjectMetadata
Source§impl Serialize for ProjectMetadata
impl Serialize for ProjectMetadata
impl StructuralPartialEq for ProjectMetadata
Auto Trait Implementations§
impl Freeze for ProjectMetadata
impl RefUnwindSafe for ProjectMetadata
impl Send for ProjectMetadata
impl Sync for ProjectMetadata
impl Unpin for ProjectMetadata
impl UnwindSafe for ProjectMetadata
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more