useserde::Deserialize;usecrate::Coord;/// The smallest rectangle that encloses every part of the glyph’s path.
////// See the [SMuFL documentation](https://w3c.github.io/smufl/latest/specification/glyphbboxes.html).
#[derive(Clone, Copy, Debug, Deserialize, PartialEq)]pubstructBoundingBox{#[serde(rename ="bBoxNE")]pubne: Coord,
#[serde(rename ="bBoxSW")]pubsw: Coord,
}