pub struct ReadEntryResp {
pub attrs: HashMap<String, Vec<String>>,
pub bin_attrs: HashMap<String, Vec<Vec<u8>>>,
}Expand description
Response for Pre-Read and Post-Read controls.
The structure is the same for both cases, but type aliases are provided for uniformity.
Fields§
§attrs: HashMap<String, Vec<String>>Attributes.
bin_attrs: HashMap<String, Vec<Vec<u8>>>Binary-valued attributes.
Trait Implementations§
Source§impl ControlParser for ReadEntryResp
impl ControlParser for ReadEntryResp
Source§fn parse(val: &[u8]) -> ReadEntryResp
fn parse(val: &[u8]) -> ReadEntryResp
Convert the raw BER value into a control-specific struct.
Auto Trait Implementations§
impl Freeze for ReadEntryResp
impl RefUnwindSafe for ReadEntryResp
impl Send for ReadEntryResp
impl Sync for ReadEntryResp
impl Unpin for ReadEntryResp
impl UnwindSafe for ReadEntryResp
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