dope 0.4.3

The manifold runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::backend::PushError;

pub trait Sockopt {
    fn set(
        &mut self,
        fixed_idx: u32,
        level: u32,
        optname: u32,
        value: i32,
    ) -> Result<(), PushError>;
}