[−][src]Enum sgf_parser::SgfToken
Enum describing all possible SGF Properties
Variants
Result(Outcome)Komi(f32)Event(String)Copyright(String)GameName(String)Place(String)Date(String)TimeLimit(u32)Handicap(u32)Comment(String)Methods
impl SgfToken[src]
pub fn from_pair(base_ident: &str, value: &str) -> SgfToken[src]
Converts a identifier and value pair to a SGF token
Returns SgfToken::Unknown((identifier, value)) for tokens without a matching identifier
Returns SgfToken::Invalid((identifier, value)) for tokens with a matching identifier, but invalid value
use sgf_parser::*; let token = SgfToken::from_pair("B", "aa"); assert_eq!(token, SgfToken::Move { color: Color::Black, action: Action::Move(1, 1) }); let token = SgfToken::from_pair("B", ""); assert_eq!(token, SgfToken::Move { color: Color::Black, action: Action::Pass }); let token = SgfToken::from_pair("B", "not_coord"); assert_eq!(token, SgfToken::Invalid(("B".to_string(), "not_coord".to_string()))); let token = SgfToken::from_pair("FOO", "aa"); assert_eq!(token, SgfToken::Unknown(("FOO".to_string(), "aa".to_string())));
pub fn is_root_token(&self) -> bool[src]
Checks if the token is a root token as defined by the SGF spec.
Root tokens can only occur in the root of a gametree collection, and they are invalid anywhere else
use sgf_parser::*; let token = SgfToken::from_pair("B", "aa"); assert!(!token.is_root_token()); let token = SgfToken::from_pair("SZ", "19"); assert!(token.is_root_token());
Trait Implementations
impl<'_> Into<String> for &'_ SgfToken[src]
impl Into<String> for SgfToken[src]
impl Clone for SgfToken[src]
impl PartialEq<SgfToken> for SgfToken[src]
impl Debug for SgfToken[src]
Auto Trait Implementations
impl Send for SgfToken
impl Sync for SgfToken
impl Unpin for SgfToken
impl RefUnwindSafe for SgfToken
impl UnwindSafe for SgfToken
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,