[−][src]Struct camctl_rs::cam::Kraken
Methods
impl<'a> Kraken<'a>
[src]
Example
use camctl_rs::Kraken; let ctx = libusb::Context::new()?; let kraken = Kraken::from(&ctx)?; kraken.set_fan(75); // sets the fan speed to 75%
pub fn from(ctx: &'a Context) -> Result<Self>
[src]
Constructs a new Kraken
from libusb::Context
pub fn set_fan(&self, speed: u8) -> Result<()>
[src]
Set the fan speed by percent, speed
should be 0-100
If the speed is over 100, the method will return without side-effects
pub fn set_pump(&self, speed: u8) -> Result<()>
[src]
Set the pump speed by percent, speed
should be 0-100
If the speed is over 100, the method will return without side-effects
Auto Trait Implementations
impl<'a> Unpin for Kraken<'a>
impl<'a> Sync for Kraken<'a>
impl<'a> Send for Kraken<'a>
impl<'a> RefUnwindSafe for Kraken<'a>
impl<'a> UnwindSafe for Kraken<'a>
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,