Struct Circle
pub struct Circle {
    pub cot: CursorOnTarget,
    /* private fields */
}Expand description
Circle object
- callsign- Callsign
- point- Point
- color- Color
- stroke_color- Stroke color
- stroke_weight- Stroke weight
- fill_color- Fill color
- remarks- Remarks
Fields§
§cot: CursorOnTargetImplementations§
§impl Circle
 
impl Circle
pub fn new( cot: CursorOnTarget, callsign: String, color: String, stroke_color: String, stroke_weight: f64, fill_color: String, remarks: String, rings: i32, spacing: f64, ) -> Self
pub fn get_xml(&mut self) -> String
pub fn get_xml_bytes(&mut self) -> Vec<u8> ⓘ
pub fn get_field(&self, field: &str) -> String
Trait Implementations§
§impl Sendable for Circle
 
impl Sendable for Circle
fn update_xml(&mut self)
fn modify_field(&mut self, field: &str, value: &str)
fn get_cot(&self) -> CursorOnTarget
Auto Trait Implementations§
impl Freeze for Circle
impl RefUnwindSafe for Circle
impl Send for Circle
impl Sync for Circle
impl Unpin for Circle
impl UnwindSafe for Circle
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