pub struct ConnectionPoint {
pub red: Option<Vec<ConnectionData>>,
pub green: Option<Vec<ConnectionData>>,
}
Expand description
https://wiki.factorio.com/Blueprint_string_format#Connection_point_object
Fields§
§red: Option<Vec<ConnectionData>>
§green: Option<Vec<ConnectionData>>
Trait Implementations§
Source§impl Clone for ConnectionPoint
impl Clone for ConnectionPoint
Source§fn clone(&self) -> ConnectionPoint
fn clone(&self) -> ConnectionPoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConnectionPoint
impl Debug for ConnectionPoint
Source§impl<'de> Deserialize<'de> for ConnectionPoint
impl<'de> Deserialize<'de> for ConnectionPoint
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
Source§impl PartialEq for ConnectionPoint
impl PartialEq for ConnectionPoint
Source§impl Serialize for ConnectionPoint
impl Serialize for ConnectionPoint
impl Eq for ConnectionPoint
impl StructuralPartialEq for ConnectionPoint
Auto Trait Implementations§
impl Freeze for ConnectionPoint
impl RefUnwindSafe for ConnectionPoint
impl Send for ConnectionPoint
impl Sync for ConnectionPoint
impl Unpin for ConnectionPoint
impl UnwindSafe for ConnectionPoint
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