[−][src]Struct sequoia_openpgp::packet::SEIP
Holds an encrypted data packet.
An encrypted data packet is a container. See Section 5.13 of RFC 4880 for details.
Methods
impl SEIP
[src]
pub fn version(&self) -> u8
[src]
Gets the version.
pub fn to_packet(self) -> Packet
[src]
Convert the SEIP
struct to a Packet
.
Methods from Deref<Target = Common>
ⓘImportant traits for PacketIter<'a>pub fn descendants(&self) -> PacketIter
[src]
Returns an iterator over all of the packet's descendants, in depth-first order.
pub fn body(&self) -> Option<&[u8]>
[src]
Retrieves the packet's body.
Packets can store a sequence of bytes as body, e.g. if the maximum recursion level is reached while parsing a sequence of packets, the container's body is stored as is.
pub fn set_body(&mut self, data: Vec<u8>)
[src]
Sets the packet's body.
Setting the body clears the old body, or any of the packet's descendants.
Trait Implementations
impl Serialize for SEIP
[src]
fn serialize<W: Write>(&self, o: &mut W) -> Result<()>
[src]
Writes a serialized version of the specified SEIP
packet to o
.
fn to_vec(&self) -> Result<Vec<u8>>
[src]
Serializes the packet to a vector.
impl<'a> Parse<'a, SEIP> for SEIP
[src]
fn from_reader<R: 'a + Read>(reader: R) -> Result<Self>
[src]
fn from_file<P: AsRef<Path>>(path: P) -> Result<T>
[src]
Reads from the given file. Read more
fn from_bytes(data: &'a [u8]) -> Result<T>
[src]
Reads from the given slice. Read more
impl From<SEIP> for Packet
[src]
impl Eq for SEIP
[src]
impl PartialEq<SEIP> for SEIP
[src]
impl Clone for SEIP
[src]
fn clone(&self) -> SEIP
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Deref for SEIP
[src]
impl Hash for SEIP
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl<'a> DerefMut for SEIP
[src]
impl Debug for SEIP
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom 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> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut 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,
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,