pub struct YgwLinkNodeProperties {
pub name: String,
pub description: String,
pub tm_packet: bool,
pub tc: bool,
pub tm_frame: bool,
pub tc_frame: bool,
}Expand description
properties for a link or node
Fields§
§name: Stringthe name of the node has to be unique for a server
description: Stringa description for the node. May be shown in the Yamcs web interface
tm_packet: boolif this is set to true, Yamcs will setup a TM pre-processor for this link/node
tc: boolif this is set to true, Yamcs will setup a TC post-processor for this link/node
tm_frame: boolif this is set to true, Yamcs will setup a CCSDS frame demultiplexer for this link/node
tc_frame: boolif this is set to true, Yamcs will setup a CCSDS frame multiplexer for this link/node
Implementations§
Trait Implementations§
Source§impl Clone for YgwLinkNodeProperties
impl Clone for YgwLinkNodeProperties
Source§fn clone(&self) -> YgwLinkNodeProperties
fn clone(&self) -> YgwLinkNodeProperties
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 moreAuto Trait Implementations§
impl Freeze for YgwLinkNodeProperties
impl RefUnwindSafe for YgwLinkNodeProperties
impl Send for YgwLinkNodeProperties
impl Sync for YgwLinkNodeProperties
impl Unpin for YgwLinkNodeProperties
impl UnwindSafe for YgwLinkNodeProperties
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