pub type UriPathSegmentA = UriPathSegmentStructA;Expand description
Represents a path segment within a %URI path. More precisely it is a node in a linked list of path segments.
@see UriUriA @since 0.3.0
Aliased Type§
#[repr(C)]pub struct UriPathSegmentA {
pub text: UriTextRangeStructA,
pub next: *mut UriPathSegmentStructA,
pub reserved: *mut c_void,
}Fields§
§text: UriTextRangeStructA< Path segment name
next: *mut UriPathSegmentStructA< Pointer to the next path segment in the list, can be NULL if last already
reserved: *mut c_void< Reserved to the parser