pub trait GMLStringWrite { // Required method fn into_gml(self) -> Result<GMLString, NulError>; }
Trait used to convert Self into a GMLString.
Self
GMLString
Converts itself into a GMLString.
Fails if it contains byte 0.
0