Skip to main content

PluginPortDriver

Struct PluginPortDriver 

Source
pub struct PluginPortDriver { /* private fields */ }
Expand description

PortDriver implementation for a plugin’s control plane.

Trait Implementations§

Source§

impl PortDriver for PluginPortDriver

Source§

fn base(&self) -> &PortDriverBase

Source§

fn base_mut(&mut self) -> &mut PortDriverBase

Source§

fn io_write_int32(&mut self, user: &mut AsynUser, value: i32) -> AsynResult<()>

Source§

fn io_write_float64( &mut self, user: &mut AsynUser, value: f64, ) -> AsynResult<()>

Source§

fn io_write_octet(&mut self, user: &mut AsynUser, data: &[u8]) -> AsynResult<()>

Source§

fn connect(&mut self, _user: &AsynUser) -> Result<(), AsynError>

Source§

fn disconnect(&mut self, _user: &AsynUser) -> Result<(), AsynError>

Source§

fn enable(&mut self, _user: &AsynUser) -> Result<(), AsynError>

Source§

fn disable(&mut self, _user: &AsynUser) -> Result<(), AsynError>

Source§

fn connect_addr(&mut self, user: &AsynUser) -> Result<(), AsynError>

Source§

fn disconnect_addr(&mut self, user: &AsynUser) -> Result<(), AsynError>

Source§

fn enable_addr(&mut self, user: &AsynUser) -> Result<(), AsynError>

Source§

fn disable_addr(&mut self, user: &AsynUser) -> Result<(), AsynError>

Source§

fn get_option(&self, key: &str) -> Result<String, AsynError>

Source§

fn set_option(&mut self, key: &str, value: &str) -> Result<(), AsynError>

Source§

fn report(&self, level: i32)

Source§

fn read_int32(&mut self, user: &AsynUser) -> Result<i32, AsynError>

Source§

fn write_int32( &mut self, user: &mut AsynUser, value: i32, ) -> Result<(), AsynError>

Source§

fn read_int64(&mut self, user: &AsynUser) -> Result<i64, AsynError>

Source§

fn write_int64( &mut self, user: &mut AsynUser, value: i64, ) -> Result<(), AsynError>

Source§

fn get_bounds_int64(&self, _user: &AsynUser) -> Result<(i64, i64), AsynError>

Source§

fn read_float64(&mut self, user: &AsynUser) -> Result<f64, AsynError>

Source§

fn write_float64( &mut self, user: &mut AsynUser, value: f64, ) -> Result<(), AsynError>

Source§

fn read_octet( &mut self, user: &AsynUser, buf: &mut [u8], ) -> Result<usize, AsynError>

Source§

fn write_octet( &mut self, user: &mut AsynUser, data: &[u8], ) -> Result<(), AsynError>

Source§

fn read_uint32_digital( &mut self, user: &AsynUser, mask: u32, ) -> Result<u32, AsynError>

Source§

fn write_uint32_digital( &mut self, user: &mut AsynUser, value: u32, mask: u32, ) -> Result<(), AsynError>

Source§

fn read_enum( &mut self, user: &AsynUser, ) -> Result<(usize, Arc<[EnumEntry]>), AsynError>

Source§

fn write_enum( &mut self, user: &mut AsynUser, index: usize, ) -> Result<(), AsynError>

Source§

fn write_enum_choices( &mut self, user: &mut AsynUser, choices: Arc<[EnumEntry]>, ) -> Result<(), AsynError>

Source§

fn read_generic_pointer( &mut self, user: &AsynUser, ) -> Result<Arc<dyn Any + Send + Sync>, AsynError>

Source§

fn write_generic_pointer( &mut self, user: &mut AsynUser, value: Arc<dyn Any + Send + Sync>, ) -> Result<(), AsynError>

Source§

fn read_float64_array( &mut self, _user: &AsynUser, _buf: &mut [f64], ) -> Result<usize, AsynError>

Source§

fn write_float64_array( &mut self, _user: &AsynUser, _data: &[f64], ) -> Result<(), AsynError>

Source§

fn read_int32_array( &mut self, _user: &AsynUser, _buf: &mut [i32], ) -> Result<usize, AsynError>

Source§

fn write_int32_array( &mut self, _user: &AsynUser, _data: &[i32], ) -> Result<(), AsynError>

Source§

fn read_int8_array( &mut self, _user: &AsynUser, _buf: &mut [i8], ) -> Result<usize, AsynError>

Source§

fn write_int8_array( &mut self, _user: &AsynUser, _data: &[i8], ) -> Result<(), AsynError>

Source§

fn read_int16_array( &mut self, _user: &AsynUser, _buf: &mut [i16], ) -> Result<usize, AsynError>

Source§

fn write_int16_array( &mut self, _user: &AsynUser, _data: &[i16], ) -> Result<(), AsynError>

Source§

fn read_int64_array( &mut self, _user: &AsynUser, _buf: &mut [i64], ) -> Result<usize, AsynError>

Source§

fn write_int64_array( &mut self, _user: &AsynUser, _data: &[i64], ) -> Result<(), AsynError>

Source§

fn read_float32_array( &mut self, _user: &AsynUser, _buf: &mut [f32], ) -> Result<usize, AsynError>

Source§

fn write_float32_array( &mut self, _user: &AsynUser, _data: &[f32], ) -> Result<(), AsynError>

Source§

fn io_read_octet( &mut self, user: &AsynUser, buf: &mut [u8], ) -> Result<usize, AsynError>

Source§

fn io_read_int32(&mut self, user: &AsynUser) -> Result<i32, AsynError>

Source§

fn io_read_int64(&mut self, user: &AsynUser) -> Result<i64, AsynError>

Source§

fn io_write_int64( &mut self, user: &mut AsynUser, value: i64, ) -> Result<(), AsynError>

Source§

fn io_read_float64(&mut self, user: &AsynUser) -> Result<f64, AsynError>

Source§

fn io_read_uint32_digital( &mut self, user: &AsynUser, mask: u32, ) -> Result<u32, AsynError>

Source§

fn io_write_uint32_digital( &mut self, user: &mut AsynUser, value: u32, mask: u32, ) -> Result<(), AsynError>

Source§

fn io_flush(&mut self, _user: &mut AsynUser) -> Result<(), AsynError>

Source§

fn drv_user_create(&self, drv_info: &str) -> Result<usize, AsynError>

Resolve a driver info string to a parameter index. Default: look up by parameter name.
Source§

fn capabilities(&self) -> Vec<Capability>

Declare the capabilities this driver supports. Default implementation includes all scalar read/write operations.
Source§

fn supports(&self, cap: Capability) -> bool

Check if this driver supports a specific capability.
Source§

fn init(&mut self) -> Result<(), AsynError>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more