[][src]Struct opencv::viz::WText3D

pub struct WText3D { /* fields omitted */ }

This 3D Widget represents 3D text. The text always faces the camera.

Methods

impl WText3D[src]

pub fn as_raw_WText3D(&self) -> *mut c_void[src]

pub unsafe fn from_raw_ptr(ptr: *mut c_void) -> Self[src]

impl WText3D[src]

pub fn set_text(&mut self, text: &str) -> Result<()>[src]

Sets the text content of the widget.

Parameters

  • text: Text content of the widget.

pub fn get_text(&self) -> Result<String>[src]

Returns the current text content of the widget.

Trait Implementations

impl Widget for WText3D[src]

fn set_rendering_property(&mut self, property: i32, value: f64) -> Result<()>[src]

Sets rendering property of the widget. Read more

fn get_rendering_property(&self, property: i32) -> Result<f64>[src]

Returns rendering property of the widget. Read more

impl Widget3D for WText3D[src]

fn set_color(&mut self, color: &Color) -> Result<()>[src]

Sets the color of the widget. Read more

impl Send for WText3D[src]

impl Drop for WText3D[src]

Auto Trait Implementations

impl Unpin for WText3D

impl !Sync for WText3D

impl RefUnwindSafe for WText3D

impl UnwindSafe for WText3D

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]