pub struct CapeStringParameter {
pub(crate) interface: *mut CAPEOPEN_1_2_ICapeStringParameter,
}Fields§
§interface: *mut CAPEOPEN_1_2_ICapeStringParameterImplementations§
Source§impl CapeStringParameter
impl CapeStringParameter
pub fn get_value<TypeOfValue: CapeStringProviderOut>( &self, value: &mut TypeOfValue, ) -> Result<(), COBIAError>
pub fn set_value<TypeOfValue: CapeStringProviderIn>( &self, value: &TypeOfValue, ) -> Result<(), COBIAError>
pub fn get_default_value<TypeOfDefaultValue: CapeStringProviderOut>( &self, default_value: &mut TypeOfDefaultValue, ) -> Result<(), COBIAError>
pub fn get_option_list<TypeOfOptionNames: CapeArrayStringProviderOut>( &self, option_names: &mut TypeOfOptionNames, ) -> Result<(), COBIAError>
pub fn get_restricted_to_list(&self) -> Result<CapeBoolean, COBIAError>
pub fn validate<TypeOfValue: CapeStringProviderIn, TypeOfMessage: CapeStringProviderOut>( &self, value: &TypeOfValue, message: &mut TypeOfMessage, ) -> Result<CapeBoolean, COBIAError>
Trait Implementations§
Source§impl CapeSmartPointer for CapeStringParameter
impl CapeSmartPointer for CapeStringParameter
type Interface = _CAPEOPEN_1_2_ICapeStringParameter
Source§fn as_cape_interface_pointer(&self) -> *mut ICapeInterface
fn as_cape_interface_pointer(&self) -> *mut ICapeInterface
Get the ICapeInterface Read more
Source§fn get_interface_id() -> &'static CapeUUID
fn get_interface_id() -> &'static CapeUUID
Get the interface ID Read more
Source§fn from_object<T: CapeSmartPointer>(
smart_pointer: &T,
) -> Result<Self, COBIAError>
fn from_object<T: CapeSmartPointer>( smart_pointer: &T, ) -> Result<Self, COBIAError>
Get an interface wrapper instance from another object Read more
Source§fn from_interface_pointer(interface: *mut Self::Interface) -> Self
fn from_interface_pointer(interface: *mut Self::Interface) -> Self
Get an interface wrapper instance from an interface pointer of the wrapped type Read more
Source§fn attach(interface: *mut Self::Interface) -> Self
fn attach(interface: *mut Self::Interface) -> Self
Get an interface wrapper instance from an interface pointer of the wrapped type, without adding a reference Read more
Source§fn detach(self) -> *mut Self::Interface
fn detach(self) -> *mut Self::Interface
Return an interface pointer and release ownership, without decreasing a reference Read more
Source§fn from_cape_interface_pointer(
interface: *mut ICapeInterface,
) -> Result<Self, COBIAError>
fn from_cape_interface_pointer( interface: *mut ICapeInterface, ) -> Result<Self, COBIAError>
Get an interface wrapper instance from any interface pointer Read more
Source§impl Clone for CapeStringParameter
impl Clone for CapeStringParameter
Auto Trait Implementations§
impl Freeze for CapeStringParameter
impl RefUnwindSafe for CapeStringParameter
impl !Send for CapeStringParameter
impl !Sync for CapeStringParameter
impl Unpin for CapeStringParameter
impl UnwindSafe for CapeStringParameter
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