Enum bt_obex::header::Header

source ·
pub enum Header {
Show 27 variants Count(u32), Name(Option<ObexString>), Type(MimeType), Length(u32), TimeIso8601(NaiveDateTime), Time4Byte(NaiveDateTime), Description(ObexString), Target(Vec<u8>), Http(Vec<u8>), Body(Vec<u8>), EndOfBody(Vec<u8>), Who(Vec<u8>), ConnectionId(ConnectionIdentifier), ApplicationParameters(Vec<u8>), AuthenticationChallenge(Vec<u8>), AuthenticationResponse(Vec<u8>), CreatorId(u32), WanUuid(Uuid), ObjectClass(Vec<u8>), SessionParameters(Vec<u8>), SessionSequenceNumber(u8), ActionId(ActionIdentifier), DestName(ObexString), Permissions(u32), SingleResponseMode(SingleResponseMode), SingleResponseModeParameters(u8), User(UserDefinedHeader),
}
Expand description

The building block of an OBEX object. A single OBEX object consists of one or more Headers. Defined in OBEX 1.5 Section 2.0.

Variants§

§

Count(u32)

§

Name(Option<ObexString>)

The Name header can be empty which is a special parameter for the GET and SETPATH operations. It is also valid to provide a Name header with an empty OBEX string. See OBEX 1.5 Section 2.2.2.

§

Type(MimeType)

§

Length(u32)

Number of bytes.

§

TimeIso8601(NaiveDateTime)

Time represented as a well-formed NaiveDateTime (no timezone). This is typically UTC. See OBEX 1.5 Section 2.2.5.

§

Time4Byte(NaiveDateTime)

Time represented as the number of seconds elapsed since midnight UTC on January 1, 1970. This is saved as a well-formed NaiveDateTime (no timezone).

§

Description(ObexString)

§

Target(Vec<u8>)

§

Http(Vec<u8>)

§

Body(Vec<u8>)

§

EndOfBody(Vec<u8>)

§

Who(Vec<u8>)

§

ConnectionId(ConnectionIdentifier)

§

ApplicationParameters(Vec<u8>)

§

AuthenticationChallenge(Vec<u8>)

§

AuthenticationResponse(Vec<u8>)

§

CreatorId(u32)

§

WanUuid(Uuid)

§

ObjectClass(Vec<u8>)

§

SessionParameters(Vec<u8>)

§

SessionSequenceNumber(u8)

§

ActionId(ActionIdentifier)

§

DestName(ObexString)

§

Permissions(u32)

4-byte bit mask.

§

SingleResponseMode(SingleResponseMode)

§

SingleResponseModeParameters(u8)

1-byte quantity containing the parameters for the SRM session.

§

User(UserDefinedHeader)

User defined Header type.

Implementations§

source§

impl Header

source

pub fn identifier(&self) -> HeaderIdentifier

source

pub fn name(s: &str) -> Self

source

pub fn empty_name() -> Self

Trait Implementations§

source§

impl Clone for Header

source§

fn clone(&self) -> Header

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Header

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Decodable for Header

§

type Error = PacketError

source§

fn decode(buf: &[u8]) -> Result<Self, Self::Error>

Decodes into a new object, or returns an error.
source§

impl Encodable for Header

§

type Error = PacketError

source§

fn encoded_len(&self) -> usize

Returns the number of bytes necessary to encode |self|.
source§

fn encode(&self, buf: &mut [u8]) -> Result<(), Self::Error>

Writes the encoded version of |self| at the start of |buf|. |buf| must be at least |self.encoded_len()| length.
source§

impl From<SingleResponseMode> for Header

source§

fn from(src: SingleResponseMode) -> Header

Converts to this type from the input type.
source§

impl PartialEq for Header

source§

fn eq(&self, other: &Header) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Header

Auto Trait Implementations§

§

impl Freeze for Header

§

impl RefUnwindSafe for Header

§

impl Send for Header

§

impl Sync for Header

§

impl Unpin for Header

§

impl UnwindSafe for Header

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
§

impl<T> DebugExt for T
where T: Debug,

§

fn debug(&self) -> String

§

impl<T> Encode<Ambiguous1> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
§

impl<T> Encode<Ambiguous2> for T

§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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