[][src]Struct corewars_core::load_file::Metadata

pub struct Metadata {
    pub redcode: Option<String>,
    pub name: Option<String>,
    pub author: Option<String>,
    pub date: Option<String>,
    pub version: Option<String>,
    pub strategy: Option<String>,
    pub assertion: Option<String>,
}

Metadata about a Redcode program that is stored in the comments.

Fields

redcode: Option<String>

The Redcode standard for this warrior (e.g. "94").

name: Option<String>

The name of this warrior.

author: Option<String>

The author of this warrior.

date: Option<String>

The date when this warrior was written.

version: Option<String>

The version of this warrior.

strategy: Option<String>

A description of the warrior's strategy

assertion: Option<String>

An assertion for this warrior to ensure compilation.

Implementations

impl Metadata[src]

pub fn parse_line(&mut self, line: &str) -> String[src]

Parse warrior metadata out of a line. Any comments will be removed and the resulting string returned, with whitespace trimmed.

Trait Implementations

impl Debug for Metadata[src]

impl Default for Metadata[src]

impl Display for Metadata[src]

impl PartialEq<Metadata> for Metadata[src]

impl StructuralPartialEq for Metadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.