Trait GMLStringWrite

Source
pub trait GMLStringWrite {
    // Required method
    fn into_gml(self) -> Result<GMLString, NulError>;
}
Expand description

Trait used to convert Self into a GMLString.

Required Methods§

Source

fn into_gml(self) -> Result<GMLString, NulError>

Converts itself into a GMLString.

Fails if it contains byte 0.

Implementations on Foreign Types§

Source§

impl GMLStringWrite for &str

Source§

impl GMLStringWrite for String

Implementors§