Lines Matching full:raw
1 //! Portability abstractions over `Raw*`.
17 /// A raw filelike object.
24 /// A raw filelike object.
31 /// A raw socketlike object.
38 /// A raw socketlike object.
45 /// A portable trait to obtain the raw value of an underlying filelike object.
51 /// Returns the raw value.
67 /// Returns the raw value.
83 /// Returns the raw value.
99 /// Returns the raw value.
115 /// Returns the raw value.
131 /// Returns the raw value.
147 /// Returns the raw value.
163 /// Returns the raw value.
179 /// Constructs `Self` from the raw value.
188 unsafe fn from_raw_filelike(raw: RawFilelike) -> Self; in from_raw_filelike()
194 unsafe fn from_raw_filelike(raw: RawFilelike) -> Self { in from_raw_filelike()
195 Self::from_raw_fd(raw) in from_raw_filelike()
203 /// Constructs `Self` from the raw value.
204 unsafe fn from_raw_filelike(raw: RawFilelike) -> Self; in from_raw_filelike()
210 unsafe fn from_raw_filelike(raw: RawFilelike) -> Self { in from_raw_filelike()
211 Self::from_raw_handle(raw) in from_raw_filelike()
219 /// Constructs `Self` from the raw value.
228 unsafe fn from_raw_socketlike(raw: RawSocketlike) -> Self; in from_raw_socketlike()
234 unsafe fn from_raw_socketlike(raw: RawSocketlike) -> Self { in from_raw_socketlike()
235 Self::from_raw_fd(raw) in from_raw_socketlike()
243 /// Constructs `Self` from the raw value.
244 unsafe fn from_raw_socketlike(raw: RawSocketlike) -> Self; in from_raw_socketlike()
250 unsafe fn from_raw_socketlike(raw: RawSocketlike) -> Self { in from_raw_socketlike()
251 Self::from_raw_socket(raw) in from_raw_socketlike()