pub enum GOType {
Circle(f32),
Rect(f32, f32),
RoundedRect(f32, f32, f32),
Text(String, Option<Font>, f32),
}Variants§
Auto Trait Implementations§
impl Freeze for GOType
impl RefUnwindSafe for GOType
impl Send for GOType
impl Sync for GOType
impl Unpin for GOType
impl UnwindSafe for GOType
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