pub trait TryParse: Sized {
    // Required method
    fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>;
}
Expand description

A type implementing this trait can be parsed from some raw bytes.

Required Methods§

source

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

Try to parse the given values into an instance of this type.

If parsing is successful, an instance of the type and a slice for the remaining data should be returned. Otherwise, an error is returned.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl TryParse for bool

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for f32

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for f64

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for i8

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for i16

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for i32

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for i64

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for u8

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for u16

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for u32

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for u64

source§

fn try_parse(value: &[u8]) -> Result<(Self, &[u8]), ParseError>

source§

impl TryParse for ()

source§

fn try_parse(remaining: &[u8]) -> Result<((), &[u8]), ParseError>

source§

impl<A> TryParse for (A,)
where A: TryParse,

source§

fn try_parse(remaining: &[u8]) -> Result<((A,), &[u8]), ParseError>

source§

impl<A, B> TryParse for (A, B)
where A: TryParse, B: TryParse,

source§

fn try_parse(remaining: &[u8]) -> Result<((A, B), &[u8]), ParseError>

source§

impl<A, B, C> TryParse for (A, B, C)
where A: TryParse, B: TryParse, C: TryParse,

source§

fn try_parse(remaining: &[u8]) -> Result<((A, B, C), &[u8]), ParseError>

source§

impl<A, B, C, D> TryParse for (A, B, C, D)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse,

source§

fn try_parse(remaining: &[u8]) -> Result<((A, B, C, D), &[u8]), ParseError>

source§

impl<A, B, C, D, E> TryParse for (A, B, C, D, E)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse,

source§

impl<A, B, C, D, E, F> TryParse for (A, B, C, D, E, F)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse,

source§

impl<A, B, C, D, E, F, G> TryParse for (A, B, C, D, E, F, G)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse,

source§

impl<A, B, C, D, E, F, G, H> TryParse for (A, B, C, D, E, F, G, H)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse,

source§

impl<A, B, C, D, E, F, G, H, I> TryParse for (A, B, C, D, E, F, G, H, I)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse, I: TryParse,

source§

impl<A, B, C, D, E, F, G, H, I, J> TryParse for (A, B, C, D, E, F, G, H, I, J)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse, I: TryParse, J: TryParse,

source§

impl<A, B, C, D, E, F, G, H, I, J, K> TryParse for (A, B, C, D, E, F, G, H, I, J, K)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse, I: TryParse, J: TryParse, K: TryParse,

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L> TryParse for (A, B, C, D, E, F, G, H, I, J, K, L)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse, I: TryParse, J: TryParse, K: TryParse, L: TryParse,

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M> TryParse for (A, B, C, D, E, F, G, H, I, J, K, L, M)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse, I: TryParse, J: TryParse, K: TryParse, L: TryParse, M: TryParse,

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N> TryParse for (A, B, C, D, E, F, G, H, I, J, K, L, M, N)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse, I: TryParse, J: TryParse, K: TryParse, L: TryParse, M: TryParse, N: TryParse,

source§

impl<A, B, C, D, E, F, G, H, I, J, K, L, M, N, O> TryParse for (A, B, C, D, E, F, G, H, I, J, K, L, M, N, O)
where A: TryParse, B: TryParse, C: TryParse, D: TryParse, E: TryParse, F: TryParse, G: TryParse, H: TryParse, I: TryParse, J: TryParse, K: TryParse, L: TryParse, M: TryParse, N: TryParse, O: TryParse,

Implementors§

source§

impl TryParse for EnableReply

source§

impl TryParse for GetOverlayWindowReply

source§

impl TryParse for x11rb_protocol::protocol::composite::QueryVersionReply

source§

impl TryParse for x11rb_protocol::protocol::damage::NotifyEvent

source§

impl TryParse for x11rb_protocol::protocol::damage::QueryVersionReply

source§

impl TryParse for BufferAttributes

source§

impl TryParse for GetBackBufferAttributesReply

source§

impl TryParse for GetVisualInfoReply

source§

impl TryParse for x11rb_protocol::protocol::dbe::QueryVersionReply

source§

impl TryParse for SwapInfo

source§

impl TryParse for VisualInfo

source§

impl TryParse for VisualInfos

source§

impl TryParse for CapableReply

source§

impl TryParse for GetTimeoutsReply

source§

impl TryParse for x11rb_protocol::protocol::dpms::GetVersionReply

source§

impl TryParse for InfoNotifyEvent

source§

impl TryParse for InfoReply

source§

impl TryParse for AttachFormat

source§

impl TryParse for AuthenticateReply

source§

impl TryParse for x11rb_protocol::protocol::dri2::BufferSwapCompleteEvent

source§

impl TryParse for ConnectReply

source§

impl TryParse for CopyRegionReply

source§

impl TryParse for DRI2Buffer

source§

impl TryParse for GetBuffersReply

source§

impl TryParse for GetBuffersWithFormatReply

source§

impl TryParse for GetMSCReply

source§

impl TryParse for GetParamReply

source§

impl TryParse for InvalidateBuffersEvent

source§

impl TryParse for x11rb_protocol::protocol::dri2::QueryVersionReply

source§

impl TryParse for SwapBuffersReply

source§

impl TryParse for WaitMSCReply

source§

impl TryParse for WaitSBCReply

source§

impl TryParse for GetSupportedModifiersReply

source§

impl TryParse for x11rb_protocol::protocol::dri3::QueryVersionReply

source§

impl TryParse for x11rb_protocol::protocol::ge::QueryVersionReply

source§

impl TryParse for AreTexturesResidentReply

source§

impl TryParse for x11rb_protocol::protocol::glx::BufferSwapCompleteEvent

source§

impl TryParse for FinishReply

source§

impl TryParse for GenListsReply

source§

impl TryParse for GenQueriesARBReply

source§

impl TryParse for GenTexturesReply

source§

impl TryParse for GetBooleanvReply

source§

impl TryParse for GetClipPlaneReply

source§

impl TryParse for GetColorTableParameterfvReply

source§

impl TryParse for GetColorTableParameterivReply

source§

impl TryParse for GetColorTableReply

source§

impl TryParse for GetCompressedTexImageARBReply

source§

impl TryParse for GetConvolutionFilterReply

source§

impl TryParse for GetConvolutionParameterfvReply

source§

impl TryParse for GetConvolutionParameterivReply

source§

impl TryParse for GetDoublevReply

source§

impl TryParse for GetDrawableAttributesReply

source§

impl TryParse for GetErrorReply

source§

impl TryParse for GetFBConfigsReply

source§

impl TryParse for GetFloatvReply

source§

impl TryParse for GetHistogramParameterfvReply

source§

impl TryParse for GetHistogramParameterivReply

source§

impl TryParse for GetHistogramReply

source§

impl TryParse for GetIntegervReply

source§

impl TryParse for GetLightfvReply

source§

impl TryParse for GetLightivReply

source§

impl TryParse for GetMapdvReply

source§

impl TryParse for GetMapfvReply

source§

impl TryParse for GetMapivReply

source§

impl TryParse for GetMaterialfvReply

source§

impl TryParse for GetMaterialivReply

source§

impl TryParse for GetMinmaxParameterfvReply

source§

impl TryParse for GetMinmaxParameterivReply

source§

impl TryParse for GetMinmaxReply

source§

impl TryParse for GetPixelMapfvReply

source§

impl TryParse for GetPixelMapuivReply

source§

impl TryParse for GetPixelMapusvReply

source§

impl TryParse for GetPolygonStippleReply

source§

impl TryParse for GetQueryObjectivARBReply

source§

impl TryParse for GetQueryObjectuivARBReply

source§

impl TryParse for GetQueryivARBReply

source§

impl TryParse for GetSeparableFilterReply

source§

impl TryParse for GetStringReply

source§

impl TryParse for GetTexEnvfvReply

source§

impl TryParse for GetTexEnvivReply

source§

impl TryParse for GetTexGendvReply

source§

impl TryParse for GetTexGenfvReply

source§

impl TryParse for GetTexGenivReply

source§

impl TryParse for GetTexImageReply

source§

impl TryParse for GetTexLevelParameterfvReply

source§

impl TryParse for GetTexLevelParameterivReply

source§

impl TryParse for GetTexParameterfvReply

source§

impl TryParse for GetTexParameterivReply

source§

impl TryParse for GetVisualConfigsReply

source§

impl TryParse for IsDirectReply

source§

impl TryParse for IsEnabledReply

source§

impl TryParse for IsListReply

source§

impl TryParse for IsQueryARBReply

source§

impl TryParse for IsTextureReply

source§

impl TryParse for MakeContextCurrentReply

source§

impl TryParse for MakeCurrentReply

source§

impl TryParse for PbufferClobberEvent

source§

impl TryParse for QueryContextReply

source§

impl TryParse for QueryExtensionsStringReply

source§

impl TryParse for QueryServerStringReply

source§

impl TryParse for x11rb_protocol::protocol::glx::QueryVersionReply

source§

impl TryParse for ReadPixelsReply

source§

impl TryParse for RenderModeReply

source§

impl TryParse for VendorPrivateWithReplyReply

source§

impl TryParse for CompleteNotifyEvent

source§

impl TryParse for x11rb_protocol::protocol::present::ConfigureNotifyEvent

source§

impl TryParse for GenericEvent

source§

impl TryParse for IdleNotifyEvent

source§

impl TryParse for Notify

source§

impl TryParse for QueryCapabilitiesReply

source§

impl TryParse for x11rb_protocol::protocol::present::QueryVersionReply

source§

impl TryParse for RedirectNotifyEvent

source§

impl TryParse for CreateModeReply

source§

impl TryParse for CrtcChange

source§

impl TryParse for GetCrtcGammaReply

source§

impl TryParse for GetCrtcGammaSizeReply

source§

impl TryParse for GetCrtcInfoReply

source§

impl TryParse for GetCrtcTransformReply

source§

impl TryParse for GetMonitorsReply

source§

impl TryParse for GetOutputInfoReply

source§

impl TryParse for GetOutputPrimaryReply

source§

impl TryParse for GetOutputPropertyReply

source§

impl TryParse for GetPanningReply

source§

impl TryParse for GetProviderInfoReply

source§

impl TryParse for GetProviderPropertyReply

source§

impl TryParse for GetProvidersReply

source§

impl TryParse for GetScreenInfoReply

source§

impl TryParse for GetScreenResourcesCurrentReply

source§

impl TryParse for GetScreenResourcesReply

source§

impl TryParse for GetScreenSizeRangeReply

source§

impl TryParse for LeaseNotify

source§

impl TryParse for ListOutputPropertiesReply

source§

impl TryParse for ListProviderPropertiesReply

source§

impl TryParse for x11rb_protocol::protocol::randr::ModeInfo

source§

impl TryParse for MonitorInfo

source§

impl TryParse for NotifyData

source§

impl TryParse for x11rb_protocol::protocol::randr::NotifyEvent

source§

impl TryParse for OutputChange

source§

impl TryParse for OutputProperty

source§

impl TryParse for ProviderChange

source§

impl TryParse for ProviderProperty

source§

impl TryParse for QueryOutputPropertyReply

source§

impl TryParse for QueryProviderPropertyReply

source§

impl TryParse for x11rb_protocol::protocol::randr::QueryVersionReply

source§

impl TryParse for RefreshRates

source§

impl TryParse for ResourceChange

source§

impl TryParse for ScreenChangeNotifyEvent

source§

impl TryParse for ScreenSize

source§

impl TryParse for SetCrtcConfigReply

source§

impl TryParse for SetPanningReply

source§

impl TryParse for SetScreenConfigReply

source§

impl TryParse for ClientInfo

source§

impl TryParse for EnableContextReply

source§

impl TryParse for ExtRange

source§

impl TryParse for GetContextReply

source§

impl TryParse for x11rb_protocol::protocol::record::QueryVersionReply

source§

impl TryParse for Range8

source§

impl TryParse for Range16

source§

impl TryParse for Range

source§

impl TryParse for Animcursorelt

source§

impl TryParse for Color

source§

impl TryParse for Directformat

source§

impl TryParse for Glyphinfo

source§

impl TryParse for Indexvalue

source§

impl TryParse for Linefix

source§

impl TryParse for Pictdepth

source§

impl TryParse for Pictforminfo

source§

impl TryParse for Pictscreen

source§

impl TryParse for Pictvisual

source§

impl TryParse for Pointfix

source§

impl TryParse for QueryFiltersReply

source§

impl TryParse for QueryPictFormatsReply

source§

impl TryParse for QueryPictIndexValuesReply

source§

impl TryParse for x11rb_protocol::protocol::render::QueryVersionReply

source§

impl TryParse for Spanfix

source§

impl TryParse for Transform

source§

impl TryParse for Trap

source§

impl TryParse for Trapezoid

source§

impl TryParse for Triangle

source§

impl TryParse for Client

source§

impl TryParse for ClientIdSpec

source§

impl TryParse for ClientIdValue

source§

impl TryParse for QueryClientIdsReply

source§

impl TryParse for QueryClientPixmapBytesReply

source§

impl TryParse for QueryClientResourcesReply

source§

impl TryParse for QueryClientsReply

source§

impl TryParse for QueryResourceBytesReply

source§

impl TryParse for x11rb_protocol::protocol::res::QueryVersionReply

source§

impl TryParse for ResourceIdSpec

source§

impl TryParse for ResourceSizeSpec

source§

impl TryParse for ResourceSizeValue

source§

impl TryParse for Type

source§

impl TryParse for x11rb_protocol::protocol::screensaver::NotifyEvent

source§

impl TryParse for QueryInfoReply

source§

impl TryParse for x11rb_protocol::protocol::screensaver::QueryVersionReply

source§

impl TryParse for GetRectanglesReply

source§

impl TryParse for InputSelectedReply

source§

impl TryParse for x11rb_protocol::protocol::shape::NotifyEvent

source§

impl TryParse for QueryExtentsReply

source§

impl TryParse for x11rb_protocol::protocol::shape::QueryVersionReply

source§

impl TryParse for CompletionEvent

source§

impl TryParse for x11rb_protocol::protocol::shm::GetImageReply

source§

impl TryParse for x11rb_protocol::protocol::shm::QueryVersionReply

source§

impl TryParse for AlarmNotifyEvent

source§

impl TryParse for CounterNotifyEvent

source§

impl TryParse for GetPriorityReply

source§

impl TryParse for InitializeReply

source§

impl TryParse for Int64

source§

impl TryParse for ListSystemCountersReply

source§

impl TryParse for QueryAlarmReply

source§

impl TryParse for QueryCounterReply

source§

impl TryParse for QueryFenceReply

source§

impl TryParse for Systemcounter

source§

impl TryParse for Trigger

source§

impl TryParse for Waitcondition

source§

impl TryParse for x11rb_protocol::protocol::xc_misc::GetVersionReply

source§

impl TryParse for GetXIDListReply

source§

impl TryParse for GetXIDRangeReply

source§

impl TryParse for EndReply

source§

impl TryParse for Event

source§

impl TryParse for x11rb_protocol::protocol::xevie::QueryVersionReply

source§

impl TryParse for SelectInputReply

source§

impl TryParse for SendReply

source§

impl TryParse for StartReply

source§

impl TryParse for AuthConnectionReply

source§

impl TryParse for x11rb_protocol::protocol::xf86dri::CreateContextReply

source§

impl TryParse for CreateDrawableReply

source§

impl TryParse for DrmClipRect

source§

impl TryParse for GetClientDriverNameReply

source§

impl TryParse for x11rb_protocol::protocol::xf86dri::GetDeviceInfoReply

source§

impl TryParse for GetDrawableInfoReply

source§

impl TryParse for OpenConnectionReply

source§

impl TryParse for QueryDirectRenderingCapableReply

source§

impl TryParse for x11rb_protocol::protocol::xf86dri::QueryVersionReply

source§

impl TryParse for GetAllModeLinesReply

source§

impl TryParse for GetDotClocksReply

source§

impl TryParse for GetGammaRampReply

source§

impl TryParse for GetGammaRampSizeReply

source§

impl TryParse for GetGammaReply

source§

impl TryParse for GetModeLineReply

source§

impl TryParse for GetMonitorReply

source§

impl TryParse for GetPermissionsReply

source§

impl TryParse for GetViewPortReply

source§

impl TryParse for x11rb_protocol::protocol::xf86vidmode::ModeInfo

source§

impl TryParse for x11rb_protocol::protocol::xf86vidmode::QueryVersionReply

source§

impl TryParse for ValidateModeLineReply

source§

impl TryParse for CursorNotifyEvent

source§

impl TryParse for FetchRegionReply

source§

impl TryParse for GetClientDisconnectModeReply

source§

impl TryParse for GetCursorImageAndNameReply

source§

impl TryParse for GetCursorImageReply

source§

impl TryParse for GetCursorNameReply

source§

impl TryParse for x11rb_protocol::protocol::xfixes::QueryVersionReply

source§

impl TryParse for x11rb_protocol::protocol::xfixes::SelectionNotifyEvent

source§

impl TryParse for GetScreenCountReply

source§

impl TryParse for GetScreenSizeReply

source§

impl TryParse for x11rb_protocol::protocol::xinerama::GetStateReply

source§

impl TryParse for IsActiveReply

source§

impl TryParse for QueryScreensReply

source§

impl TryParse for x11rb_protocol::protocol::xinerama::QueryVersionReply

source§

impl TryParse for ScreenInfo

source§

impl TryParse for AddMaster

source§

impl TryParse for AttachSlave

source§

impl TryParse for AxisInfo

source§

impl TryParse for BarrierHitEvent

source§

impl TryParse for BarrierReleasePointerInfo

source§

impl TryParse for BellFeedbackCtl

source§

impl TryParse for BellFeedbackState

source§

impl TryParse for ButtonClass

source§

impl TryParse for ButtonInfo

source§

impl TryParse for x11rb_protocol::protocol::xinput::ButtonPressEvent

source§

impl TryParse for ButtonState

source§

impl TryParse for ChangeDeviceControlReply

source§

impl TryParse for ChangeDeviceNotifyEvent

source§

impl TryParse for ChangeKeyboardDeviceReply

source§

impl TryParse for ChangePointerDeviceReply

source§

impl TryParse for DetachSlave

source§

impl TryParse for DeviceAbsAreaCtrl

source§

impl TryParse for DeviceAbsAreaState

source§

impl TryParse for DeviceAbsCalibCtl

source§

impl TryParse for DeviceAbsCalibState

source§

impl TryParse for DeviceButtonStateNotifyEvent

source§

impl TryParse for DeviceChangedEvent

source§

impl TryParse for DeviceClass

source§

impl TryParse for DeviceClassDataButton

source§

impl TryParse for DeviceClassDataGesture

source§

impl TryParse for DeviceClassDataKey

source§

impl TryParse for DeviceClassDataScroll

source§

impl TryParse for DeviceClassDataTouch

source§

impl TryParse for DeviceClassDataValuator

source§

impl TryParse for DeviceCoreCtrl

source§

impl TryParse for DeviceCoreState

source§

impl TryParse for DeviceCtl

source§

impl TryParse for DeviceCtlDataAbsArea

source§

impl TryParse for DeviceCtlDataAbsCalib

source§

impl TryParse for DeviceCtlDataCore

source§

impl TryParse for DeviceCtlDataResolution

source§

impl TryParse for DeviceEnableCtrl

source§

impl TryParse for DeviceEnableState

source§

impl TryParse for DeviceFocusInEvent

source§

impl TryParse for DeviceInfo

source§

impl TryParse for DeviceKeyPressEvent

source§

impl TryParse for DeviceKeyStateNotifyEvent

source§

impl TryParse for DeviceMappingNotifyEvent

source§

impl TryParse for DeviceName

source§

impl TryParse for DevicePresenceNotifyEvent

source§

impl TryParse for DevicePropertyNotifyEvent

source§

impl TryParse for DeviceResolutionCtl

source§

impl TryParse for DeviceResolutionState

source§

impl TryParse for DeviceState

source§

impl TryParse for DeviceStateDataAbsArea

source§

impl TryParse for DeviceStateDataAbsCalib

source§

impl TryParse for DeviceStateDataCore

source§

impl TryParse for DeviceStateDataResolution

source§

impl TryParse for DeviceStateNotifyEvent

source§

impl TryParse for DeviceValuatorEvent

source§

impl TryParse for EnterEvent

source§

impl TryParse for EventForSend

source§

impl TryParse for EventMask

source§

impl TryParse for FeedbackCtl

source§

impl TryParse for FeedbackCtlDataBell

source§

impl TryParse for FeedbackCtlDataInteger

source§

impl TryParse for FeedbackCtlDataKeyboard

source§

impl TryParse for FeedbackCtlDataLed

source§

impl TryParse for FeedbackCtlDataPointer

source§

impl TryParse for FeedbackCtlDataString

source§

impl TryParse for FeedbackState

source§

impl TryParse for FeedbackStateDataBell

source§

impl TryParse for FeedbackStateDataInteger

source§

impl TryParse for FeedbackStateDataKeyboard

source§

impl TryParse for FeedbackStateDataLed

source§

impl TryParse for FeedbackStateDataPointer

source§

impl TryParse for FeedbackStateDataString

source§

impl TryParse for Fp3232

source§

impl TryParse for GestureClass

source§

impl TryParse for GesturePinchBeginEvent

source§

impl TryParse for GestureSwipeBeginEvent

source§

impl TryParse for GetDeviceButtonMappingReply

source§

impl TryParse for GetDeviceControlReply

source§

impl TryParse for GetDeviceDontPropagateListReply

source§

impl TryParse for GetDeviceFocusReply

source§

impl TryParse for GetDeviceKeyMappingReply

source§

impl TryParse for GetDeviceModifierMappingReply

source§

impl TryParse for GetDeviceMotionEventsReply

source§

impl TryParse for GetDevicePropertyReply

source§

impl TryParse for GetExtensionVersionReply

source§

impl TryParse for GetFeedbackControlReply

source§

impl TryParse for GetSelectedExtensionEventsReply

source§

impl TryParse for GrabDeviceReply

source§

impl TryParse for GrabModifierInfo

source§

impl TryParse for GroupInfo

source§

impl TryParse for HierarchyChange

source§

impl TryParse for HierarchyChangeDataAddMaster

source§

impl TryParse for HierarchyChangeDataAttachSlave

source§

impl TryParse for HierarchyChangeDataDetachSlave

source§

impl TryParse for HierarchyChangeDataRemoveMaster

source§

impl TryParse for HierarchyEvent

source§

impl TryParse for HierarchyInfo

source§

impl TryParse for InputClassInfo

source§

impl TryParse for InputInfo

source§

impl TryParse for InputInfoInfoButton

source§

impl TryParse for InputInfoInfoKey

source§

impl TryParse for InputInfoInfoValuator

source§

impl TryParse for InputState

source§

impl TryParse for InputStateDataButton

source§

impl TryParse for InputStateDataKey

source§

impl TryParse for InputStateDataValuator

source§

impl TryParse for IntegerFeedbackCtl

source§

impl TryParse for IntegerFeedbackState

source§

impl TryParse for KbdFeedbackCtl

source§

impl TryParse for KbdFeedbackState

source§

impl TryParse for KeyClass

source§

impl TryParse for KeyInfo

source§

impl TryParse for x11rb_protocol::protocol::xinput::KeyPressEvent

source§

impl TryParse for KeyState

source§

impl TryParse for LedFeedbackCtl

source§

impl TryParse for LedFeedbackState

source§

impl TryParse for ListDevicePropertiesReply

source§

impl TryParse for ListInputDevicesReply

source§

impl TryParse for ModifierInfo

source§

impl TryParse for OpenDeviceReply

source§

impl TryParse for PropertyEvent

source§

impl TryParse for PtrFeedbackCtl

source§

impl TryParse for PtrFeedbackState

source§

impl TryParse for QueryDeviceStateReply

source§

impl TryParse for RawButtonPressEvent

source§

impl TryParse for RawKeyPressEvent

source§

impl TryParse for RawTouchBeginEvent

source§

impl TryParse for RemoveMaster

source§

impl TryParse for ScrollClass

source§

impl TryParse for SetDeviceButtonMappingReply

source§

impl TryParse for SetDeviceModeReply

source§

impl TryParse for SetDeviceModifierMappingReply

source§

impl TryParse for SetDeviceValuatorsReply

source§

impl TryParse for StringFeedbackCtl

source§

impl TryParse for StringFeedbackState

source§

impl TryParse for TouchBeginEvent

source§

impl TryParse for TouchClass

source§

impl TryParse for TouchOwnershipEvent

source§

impl TryParse for ValuatorClass

source§

impl TryParse for ValuatorInfo

source§

impl TryParse for ValuatorState

source§

impl TryParse for XIDeviceInfo

source§

impl TryParse for XIGetClientPointerReply

source§

impl TryParse for XIGetFocusReply

source§

impl TryParse for XIGetPropertyReply

source§

impl TryParse for XIGetSelectedEventsReply

source§

impl TryParse for XIGrabDeviceReply

source§

impl TryParse for XIListPropertiesReply

source§

impl TryParse for XIPassiveGrabDeviceReply

source§

impl TryParse for XIQueryDeviceReply

source§

impl TryParse for XIQueryPointerReply

source§

impl TryParse for XIQueryVersionReply

source§

impl TryParse for AccessXNotifyEvent

source§

impl TryParse for Action

source§

impl TryParse for ActionMessageEvent

source§

impl TryParse for Behavior

source§

impl TryParse for BellNotifyEvent

source§

impl TryParse for CommonBehavior

source§

impl TryParse for CompatMapNotifyEvent

source§

impl TryParse for ControlsNotifyEvent

source§

impl TryParse for CountedString16

source§

impl TryParse for DefaultBehavior

source§

impl TryParse for DeviceLedInfo

source§

impl TryParse for ExtensionDeviceNotifyEvent

source§

impl TryParse for GetCompatMapReply

source§

impl TryParse for GetControlsReply

source§

impl TryParse for x11rb_protocol::protocol::xkb::GetDeviceInfoReply

source§

impl TryParse for GetIndicatorMapReply

source§

impl TryParse for GetIndicatorStateReply

source§

impl TryParse for GetKbdByNameRepliesCompatMap

source§

impl TryParse for GetKbdByNameRepliesGeometry

source§

impl TryParse for GetKbdByNameRepliesIndicatorMaps

source§

impl TryParse for GetKbdByNameRepliesKeyNames

source§

impl TryParse for GetKbdByNameRepliesTypes

source§

impl TryParse for GetKbdByNameReply

source§

impl TryParse for GetMapReply

source§

impl TryParse for GetNamedIndicatorReply

source§

impl TryParse for GetNamesReply

source§

impl TryParse for x11rb_protocol::protocol::xkb::GetStateReply

source§

impl TryParse for IndicatorMap

source§

impl TryParse for IndicatorMapNotifyEvent

source§

impl TryParse for IndicatorStateNotifyEvent

source§

impl TryParse for KTMapEntry

source§

impl TryParse for KTSetMapEntry

source§

impl TryParse for Key

source§

impl TryParse for KeyAlias

source§

impl TryParse for KeyModMap

source§

impl TryParse for KeyName

source§

impl TryParse for KeySymMap

source§

impl TryParse for KeyType

source§

impl TryParse for KeyVModMap

source§

impl TryParse for ListComponentsReply

source§

impl TryParse for Listing

source§

impl TryParse for x11rb_protocol::protocol::xkb::MapNotifyEvent

source§

impl TryParse for ModDef

source§

impl TryParse for NamesNotifyEvent

source§

impl TryParse for NewKeyboardNotifyEvent

source§

impl TryParse for Outline

source§

impl TryParse for Overlay

source§

impl TryParse for OverlayBehavior

source§

impl TryParse for OverlayKey

source§

impl TryParse for OverlayRow

source§

impl TryParse for PerClientFlagsReply

source§

impl TryParse for RadioGroupBehavior

source§

impl TryParse for Row

source§

impl TryParse for SAActionMessage

source§

impl TryParse for SADeviceBtn

source§

impl TryParse for SADeviceValuator

source§

impl TryParse for SAIsoLock

source§

impl TryParse for SALockDeviceBtn

source§

impl TryParse for SALockPtrBtn

source§

impl TryParse for SAMovePtr

source§

impl TryParse for SANoAction

source§

impl TryParse for SAPtrBtn

source§

impl TryParse for SARedirectKey

source§

impl TryParse for SASetControls

source§

impl TryParse for SASetGroup

source§

impl TryParse for SASetMods

source§

impl TryParse for SASetPtrDflt

source§

impl TryParse for SASwitchScreen

source§

impl TryParse for SATerminate

source§

impl TryParse for SIAction

source§

impl TryParse for SelectEventsAuxAccessXNotify

source§

impl TryParse for SelectEventsAuxActionMessage

source§

impl TryParse for SelectEventsAuxBellNotify

source§

impl TryParse for SelectEventsAuxCompatMapNotify

source§

impl TryParse for SelectEventsAuxControlsNotify

source§

impl TryParse for SelectEventsAuxExtensionDeviceNotify

source§

impl TryParse for SelectEventsAuxIndicatorMapNotify

source§

impl TryParse for SelectEventsAuxIndicatorStateNotify

source§

impl TryParse for SelectEventsAuxNamesNotify

source§

impl TryParse for SelectEventsAuxNewKeyboardNotify

source§

impl TryParse for SelectEventsAuxStateNotify

source§

impl TryParse for SetBehavior

source§

impl TryParse for SetDebuggingFlagsReply

source§

impl TryParse for SetExplicit

source§

impl TryParse for SetKeyType

source§

impl TryParse for Shape

source§

impl TryParse for StateNotifyEvent

source§

impl TryParse for SymInterpret

source§

impl TryParse for UseExtensionReply

source§

impl TryParse for AttributNotifyEvent

source§

impl TryParse for x11rb_protocol::protocol::xprint::NotifyEvent

source§

impl TryParse for PrintGetAttributesReply

source§

impl TryParse for PrintGetContextReply

source§

impl TryParse for PrintGetDocumentDataReply

source§

impl TryParse for PrintGetImageResolutionReply

source§

impl TryParse for PrintGetOneAttributesReply

source§

impl TryParse for PrintGetPageDimensionsReply

source§

impl TryParse for PrintGetPrinterListReply

source§

impl TryParse for PrintGetScreenOfContextReply

source§

impl TryParse for PrintInputSelectedReply

source§

impl TryParse for PrintQueryScreensReply

source§

impl TryParse for PrintQueryVersionReply

source§

impl TryParse for PrintSetImageResolutionReply

source§

impl TryParse for Printer

source§

impl TryParse for AllocColorCellsReply

source§

impl TryParse for AllocColorPlanesReply

source§

impl TryParse for AllocColorReply

source§

impl TryParse for AllocNamedColorReply

source§

impl TryParse for Arc

source§

impl TryParse for x11rb_protocol::protocol::xproto::ButtonPressEvent

source§

impl TryParse for Char2b

source§

impl TryParse for Charinfo

source§

impl TryParse for CirculateNotifyEvent

source§

impl TryParse for ClientMessageData

source§

impl TryParse for ClientMessageEvent

source§

impl TryParse for Coloritem

source§

impl TryParse for ColormapNotifyEvent

source§

impl TryParse for x11rb_protocol::protocol::xproto::ConfigureNotifyEvent

source§

impl TryParse for ConfigureRequestEvent

source§

impl TryParse for CreateNotifyEvent

source§

impl TryParse for Depth

source§

impl TryParse for DestroyNotifyEvent

source§

impl TryParse for EnterNotifyEvent

source§

impl TryParse for ExposeEvent

source§

impl TryParse for FocusInEvent

source§

impl TryParse for Fontprop

source§

impl TryParse for x11rb_protocol::protocol::xproto::Format

source§

impl TryParse for GeGenericEvent

source§

impl TryParse for GetAtomNameReply

source§

impl TryParse for GetFontPathReply

source§

impl TryParse for GetGeometryReply

source§

impl TryParse for x11rb_protocol::protocol::xproto::GetImageReply

source§

impl TryParse for GetInputFocusReply

source§

impl TryParse for GetKeyboardControlReply

source§

impl TryParse for GetKeyboardMappingReply

source§

impl TryParse for GetModifierMappingReply

source§

impl TryParse for GetMotionEventsReply

source§

impl TryParse for GetPointerControlReply

source§

impl TryParse for GetPointerMappingReply

source§

impl TryParse for GetPropertyReply

source§

impl TryParse for GetScreenSaverReply

source§

impl TryParse for GetSelectionOwnerReply

source§

impl TryParse for GetWindowAttributesReply

source§

impl TryParse for GrabKeyboardReply

source§

impl TryParse for GrabPointerReply

source§

impl TryParse for GraphicsExposureEvent

source§

impl TryParse for GravityNotifyEvent

source§

impl TryParse for Host

source§

impl TryParse for InternAtomReply

source§

impl TryParse for x11rb_protocol::protocol::xproto::KeyPressEvent

source§

impl TryParse for KeymapNotifyEvent

source§

impl TryParse for ListExtensionsReply

source§

impl TryParse for ListFontsReply

source§

impl TryParse for ListFontsWithInfoReply

source§

impl TryParse for ListHostsReply

source§

impl TryParse for ListInstalledColormapsReply

source§

impl TryParse for x11rb_protocol::protocol::xproto::ListPropertiesReply

source§

impl TryParse for LookupColorReply

source§

impl TryParse for x11rb_protocol::protocol::xproto::MapNotifyEvent

source§

impl TryParse for MapRequestEvent

source§

impl TryParse for MappingNotifyEvent

source§

impl TryParse for MotionNotifyEvent

source§

impl TryParse for NoExposureEvent

source§

impl TryParse for Point

source§

impl TryParse for PropertyNotifyEvent

source§

impl TryParse for x11rb_protocol::protocol::xproto::QueryBestSizeReply

source§

impl TryParse for QueryColorsReply

source§

impl TryParse for x11rb_protocol::protocol::xproto::QueryExtensionReply

source§

impl TryParse for QueryFontReply

source§

impl TryParse for QueryKeymapReply

source§

impl TryParse for QueryPointerReply

source§

impl TryParse for QueryTextExtentsReply

source§

impl TryParse for QueryTreeReply

source§

impl TryParse for Rectangle

source§

impl TryParse for ReparentNotifyEvent

source§

impl TryParse for ResizeRequestEvent

source§

impl TryParse for Rgb

source§

impl TryParse for Screen

source§

impl TryParse for Segment

source§

impl TryParse for SelectionClearEvent

source§

impl TryParse for x11rb_protocol::protocol::xproto::SelectionNotifyEvent

source§

impl TryParse for SelectionRequestEvent

source§

impl TryParse for SetModifierMappingReply

source§

impl TryParse for SetPointerMappingReply

source§

impl TryParse for Setup

source§

impl TryParse for SetupAuthenticate

source§

impl TryParse for SetupFailed

source§

impl TryParse for SetupRequest

source§

impl TryParse for Str

source§

impl TryParse for Timecoord

source§

impl TryParse for TranslateCoordinatesReply

source§

impl TryParse for UnmapNotifyEvent

source§

impl TryParse for VisibilityNotifyEvent

source§

impl TryParse for Visualtype

source§

impl TryParse for GetClientContextReply

source§

impl TryParse for GetDeviceContextReply

source§

impl TryParse for GetDeviceCreateContextReply

source§

impl TryParse for GetPropertyContextReply

source§

impl TryParse for GetPropertyCreateContextReply

source§

impl TryParse for GetPropertyDataContextReply

source§

impl TryParse for GetPropertyUseContextReply

source§

impl TryParse for GetSelectionContextReply

source§

impl TryParse for GetSelectionCreateContextReply

source§

impl TryParse for GetSelectionDataContextReply

source§

impl TryParse for GetSelectionUseContextReply

source§

impl TryParse for GetWindowContextReply

source§

impl TryParse for GetWindowCreateContextReply

source§

impl TryParse for ListItem

source§

impl TryParse for x11rb_protocol::protocol::xselinux::ListPropertiesReply

source§

impl TryParse for ListSelectionsReply

source§

impl TryParse for x11rb_protocol::protocol::xselinux::QueryVersionReply

source§

impl TryParse for CompareCursorReply

source§

impl TryParse for x11rb_protocol::protocol::xtest::GetVersionReply

source§

impl TryParse for AdaptorInfo

source§

impl TryParse for AttributeInfo

source§

impl TryParse for EncodingInfo

source§

impl TryParse for x11rb_protocol::protocol::xv::Format

source§

impl TryParse for GetPortAttributeReply

source§

impl TryParse for GrabPortReply

source§

impl TryParse for Image

source§

impl TryParse for ImageFormatInfo

source§

impl TryParse for ListImageFormatsReply

source§

impl TryParse for PortNotifyEvent

source§

impl TryParse for QueryAdaptorsReply

source§

impl TryParse for x11rb_protocol::protocol::xv::QueryBestSizeReply

source§

impl TryParse for QueryEncodingsReply

source§

impl TryParse for x11rb_protocol::protocol::xv::QueryExtensionReply

source§

impl TryParse for QueryImageAttributesReply

source§

impl TryParse for QueryPortAttributesReply

source§

impl TryParse for Rational

source§

impl TryParse for VideoNotifyEvent

source§

impl TryParse for x11rb_protocol::protocol::xvmc::CreateContextReply

source§

impl TryParse for CreateSubpictureReply

source§

impl TryParse for CreateSurfaceReply

source§

impl TryParse for ListSubpictureTypesReply

source§

impl TryParse for ListSurfaceTypesReply

source§

impl TryParse for x11rb_protocol::protocol::xvmc::QueryVersionReply

source§

impl TryParse for SurfaceInfo