pub struct Chart {
pub waypoint_symbol: Option<String>,
pub submitted_by: Option<String>,
pub submitted_on: Option<String>,
}Expand description
The chart of a system or waypoint, which makes the location visible to other agents.
Fields§
§waypoint_symbol: Option<String>The symbol of the waypoint.
submitted_by: Option<String>The agent that submitted the chart for this waypoint.
submitted_on: Option<String>The time the chart for this waypoint was submitted.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Chart
impl<'de> Deserialize<'de> for Chart
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Chart
Auto Trait Implementations§
impl Freeze for Chart
impl RefUnwindSafe for Chart
impl Send for Chart
impl Sync for Chart
impl Unpin for Chart
impl UnwindSafe for Chart
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more