pub struct Note {
pub x: f32,
pub y: f32,
pub text_height: f32,
pub test_string_physical_length: f32,
pub text: String,
}Expand description
A board or panel file note. http://www.aertia.com/docs/priware/IDF_V30_Spec.pdf#page=26
This section contains notes for the design that can be displayed in the receiving system, to allow the electrical and mechanical designers to communicate additional information about the design entities beyond that conveyed by the entities themselves. Notes are not intended to be used for rigorous translations of text such as for transferring manufacturing drawings. The association of a note to its subject is inferred by its location.
Fields§
§x: f32§y: f32§text_height: f32§test_string_physical_length: f32§text: StringTrait Implementations§
Source§impl PartialOrd for Note
impl PartialOrd for Note
impl StructuralPartialEq for Note
Auto Trait Implementations§
impl Freeze for Note
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
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