pub struct TransformParameterInfo {
pub name: Cow<'static, str>,
pub long_name: Cow<'static, str>,
pub length: Option<usize>,
}Fields§
§name: Cow<'static, str>§long_name: Cow<'static, str>§length: Option<usize>Implementations§
Source§impl TransformParameterInfo
impl TransformParameterInfo
pub fn new(name: &'static str, length: Option<usize>) -> Self
pub fn new_with_long( name: &'static str, long_name: &'static str, length: Option<usize>, ) -> Self
pub fn from_raw(value: BNTransformParameterInfo) -> Self
pub fn into_raw(self) -> BNTransformParameterInfo
pub fn free_raw(value: BNTransformParameterInfo)
Trait Implementations§
Source§impl Clone for TransformParameterInfo
impl Clone for TransformParameterInfo
Source§fn clone(&self) -> TransformParameterInfo
fn clone(&self) -> TransformParameterInfo
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 moreSource§impl Debug for TransformParameterInfo
impl Debug for TransformParameterInfo
Source§impl Hash for TransformParameterInfo
impl Hash for TransformParameterInfo
Source§impl Ord for TransformParameterInfo
impl Ord for TransformParameterInfo
Source§fn cmp(&self, other: &TransformParameterInfo) -> Ordering
fn cmp(&self, other: &TransformParameterInfo) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TransformParameterInfo
impl PartialEq for TransformParameterInfo
Source§impl PartialOrd for TransformParameterInfo
impl PartialOrd for TransformParameterInfo
impl Eq for TransformParameterInfo
impl StructuralPartialEq for TransformParameterInfo
Auto Trait Implementations§
impl Freeze for TransformParameterInfo
impl RefUnwindSafe for TransformParameterInfo
impl Send for TransformParameterInfo
impl Sync for TransformParameterInfo
impl Unpin for TransformParameterInfo
impl UnwindSafe for TransformParameterInfo
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