x11rb::x11_utils

Trait TryParse

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§

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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

§

impl TryParse for bool

§

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

§

impl TryParse for f32

§

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

§

impl TryParse for f64

§

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

§

impl TryParse for i8

§

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

§

impl TryParse for i16

§

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

§

impl TryParse for i32

§

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

§

impl TryParse for i64

§

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

§

impl TryParse for u8

§

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

§

impl TryParse for u16

§

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

§

impl TryParse for u32

§

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

§

impl TryParse for u64

§

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

§

impl TryParse for ()

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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

§

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,

§

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

§

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,

§

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

§

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,

§

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

§

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,

§

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,

§

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,

§

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,

§

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,

§

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,

§

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 AspectRatio

Source§

impl TryParse for WmHints

Source§

impl TryParse for WmSizeHints

§

impl TryParse for EnableReply

§

impl TryParse for GetOverlayWindowReply

§

impl TryParse for x11rb::protocol::composite::QueryVersionReply

§

impl TryParse for GetSupportedModifiersReply

§

impl TryParse for x11rb::protocol::dri3::QueryVersionReply

§

impl TryParse for x11rb::protocol::ge::QueryVersionReply

§

impl TryParse for CompleteNotifyEvent

§

impl TryParse for x11rb::protocol::present::ConfigureNotifyEvent

§

impl TryParse for GenericEvent

§

impl TryParse for IdleNotifyEvent

§

impl TryParse for Notify

§

impl TryParse for QueryCapabilitiesReply

§

impl TryParse for x11rb::protocol::present::QueryVersionReply

§

impl TryParse for RedirectNotifyEvent

§

impl TryParse for CreateModeReply

§

impl TryParse for CrtcChange

§

impl TryParse for GetCrtcGammaReply

§

impl TryParse for GetCrtcGammaSizeReply

§

impl TryParse for GetCrtcInfoReply

§

impl TryParse for GetCrtcTransformReply

§

impl TryParse for GetMonitorsReply

§

impl TryParse for GetOutputInfoReply

§

impl TryParse for GetOutputPrimaryReply

§

impl TryParse for GetOutputPropertyReply

§

impl TryParse for GetPanningReply

§

impl TryParse for GetProviderInfoReply

§

impl TryParse for GetProviderPropertyReply

§

impl TryParse for GetProvidersReply

§

impl TryParse for GetScreenInfoReply

§

impl TryParse for GetScreenResourcesCurrentReply

§

impl TryParse for GetScreenResourcesReply

§

impl TryParse for GetScreenSizeRangeReply

§

impl TryParse for LeaseNotify

§

impl TryParse for ListOutputPropertiesReply

§

impl TryParse for ListProviderPropertiesReply

§

impl TryParse for ModeInfo

§

impl TryParse for MonitorInfo

§

impl TryParse for NotifyData

§

impl TryParse for x11rb::protocol::randr::NotifyEvent

§

impl TryParse for OutputChange

§

impl TryParse for OutputProperty

§

impl TryParse for ProviderChange

§

impl TryParse for ProviderProperty

§

impl TryParse for QueryOutputPropertyReply

§

impl TryParse for QueryProviderPropertyReply

§

impl TryParse for x11rb::protocol::randr::QueryVersionReply

§

impl TryParse for RefreshRates

§

impl TryParse for ResourceChange

§

impl TryParse for ScreenChangeNotifyEvent

§

impl TryParse for ScreenSize

§

impl TryParse for SetCrtcConfigReply

§

impl TryParse for SetPanningReply

§

impl TryParse for SetScreenConfigReply

§

impl TryParse for Animcursorelt

§

impl TryParse for Color

§

impl TryParse for Directformat

§

impl TryParse for Glyphinfo

§

impl TryParse for Indexvalue

§

impl TryParse for Linefix

§

impl TryParse for Pictdepth

§

impl TryParse for Pictforminfo

§

impl TryParse for Pictscreen

§

impl TryParse for Pictvisual

§

impl TryParse for Pointfix

§

impl TryParse for QueryFiltersReply

§

impl TryParse for QueryPictFormatsReply

§

impl TryParse for QueryPictIndexValuesReply

§

impl TryParse for x11rb::protocol::render::QueryVersionReply

§

impl TryParse for Spanfix

§

impl TryParse for Transform

§

impl TryParse for Trap

§

impl TryParse for Trapezoid

§

impl TryParse for Triangle

§

impl TryParse for GetRectanglesReply

§

impl TryParse for InputSelectedReply

§

impl TryParse for x11rb::protocol::shape::NotifyEvent

§

impl TryParse for QueryExtentsReply

§

impl TryParse for x11rb::protocol::shape::QueryVersionReply

§

impl TryParse for AlarmNotifyEvent

§

impl TryParse for CounterNotifyEvent

§

impl TryParse for GetPriorityReply

§

impl TryParse for InitializeReply

§

impl TryParse for Int64

§

impl TryParse for ListSystemCountersReply

§

impl TryParse for QueryAlarmReply

§

impl TryParse for QueryCounterReply

§

impl TryParse for QueryFenceReply

§

impl TryParse for Systemcounter

§

impl TryParse for Trigger

§

impl TryParse for Waitcondition

§

impl TryParse for GetVersionReply

§

impl TryParse for GetXIDListReply

§

impl TryParse for GetXIDRangeReply

§

impl TryParse for CursorNotifyEvent

§

impl TryParse for FetchRegionReply

§

impl TryParse for GetClientDisconnectModeReply

§

impl TryParse for GetCursorImageAndNameReply

§

impl TryParse for GetCursorImageReply

§

impl TryParse for GetCursorNameReply

§

impl TryParse for x11rb::protocol::xfixes::QueryVersionReply

§

impl TryParse for x11rb::protocol::xfixes::SelectionNotifyEvent

§

impl TryParse for AddMaster

§

impl TryParse for AttachSlave

§

impl TryParse for AxisInfo

§

impl TryParse for BarrierHitEvent

§

impl TryParse for BarrierReleasePointerInfo

§

impl TryParse for BellFeedbackCtl

§

impl TryParse for BellFeedbackState

§

impl TryParse for ButtonClass

§

impl TryParse for ButtonInfo

§

impl TryParse for x11rb::protocol::xinput::ButtonPressEvent

§

impl TryParse for ButtonState

§

impl TryParse for ChangeDeviceControlReply

§

impl TryParse for ChangeDeviceNotifyEvent

§

impl TryParse for ChangeKeyboardDeviceReply

§

impl TryParse for ChangePointerDeviceReply

§

impl TryParse for DetachSlave

§

impl TryParse for DeviceAbsAreaCtrl

§

impl TryParse for DeviceAbsAreaState

§

impl TryParse for DeviceAbsCalibCtl

§

impl TryParse for DeviceAbsCalibState

§

impl TryParse for DeviceButtonStateNotifyEvent

§

impl TryParse for DeviceChangedEvent

§

impl TryParse for DeviceClass

§

impl TryParse for DeviceClassDataButton

§

impl TryParse for DeviceClassDataGesture

§

impl TryParse for DeviceClassDataKey

§

impl TryParse for DeviceClassDataScroll

§

impl TryParse for DeviceClassDataTouch

§

impl TryParse for DeviceClassDataValuator

§

impl TryParse for DeviceCoreCtrl

§

impl TryParse for DeviceCoreState

§

impl TryParse for DeviceCtl

§

impl TryParse for DeviceCtlDataAbsArea

§

impl TryParse for DeviceCtlDataAbsCalib

§

impl TryParse for DeviceCtlDataCore

§

impl TryParse for DeviceCtlDataResolution

§

impl TryParse for DeviceEnableCtrl

§

impl TryParse for DeviceEnableState

§

impl TryParse for DeviceFocusInEvent

§

impl TryParse for DeviceInfo

§

impl TryParse for DeviceKeyPressEvent

§

impl TryParse for DeviceKeyStateNotifyEvent

§

impl TryParse for DeviceMappingNotifyEvent

§

impl TryParse for DeviceName

§

impl TryParse for DevicePresenceNotifyEvent

§

impl TryParse for DevicePropertyNotifyEvent

§

impl TryParse for DeviceResolutionCtl

§

impl TryParse for DeviceResolutionState

§

impl TryParse for DeviceState

§

impl TryParse for DeviceStateDataAbsArea

§

impl TryParse for DeviceStateDataAbsCalib

§

impl TryParse for DeviceStateDataCore

§

impl TryParse for DeviceStateDataResolution

§

impl TryParse for DeviceStateNotifyEvent

§

impl TryParse for DeviceValuatorEvent

§

impl TryParse for EnterEvent

§

impl TryParse for EventForSend

§

impl TryParse for EventMask

§

impl TryParse for FeedbackCtl

§

impl TryParse for FeedbackCtlDataBell

§

impl TryParse for FeedbackCtlDataInteger

§

impl TryParse for FeedbackCtlDataKeyboard

§

impl TryParse for FeedbackCtlDataLed

§

impl TryParse for FeedbackCtlDataPointer

§

impl TryParse for FeedbackCtlDataString

§

impl TryParse for FeedbackState

§

impl TryParse for FeedbackStateDataBell

§

impl TryParse for FeedbackStateDataInteger

§

impl TryParse for FeedbackStateDataKeyboard

§

impl TryParse for FeedbackStateDataLed

§

impl TryParse for FeedbackStateDataPointer

§

impl TryParse for FeedbackStateDataString

§

impl TryParse for Fp3232

§

impl TryParse for GestureClass

§

impl TryParse for GesturePinchBeginEvent

§

impl TryParse for GestureSwipeBeginEvent

§

impl TryParse for GetDeviceButtonMappingReply

§

impl TryParse for GetDeviceControlReply

§

impl TryParse for GetDeviceDontPropagateListReply

§

impl TryParse for GetDeviceFocusReply

§

impl TryParse for GetDeviceKeyMappingReply

§

impl TryParse for GetDeviceModifierMappingReply

§

impl TryParse for GetDeviceMotionEventsReply

§

impl TryParse for GetDevicePropertyReply

§

impl TryParse for GetExtensionVersionReply

§

impl TryParse for GetFeedbackControlReply

§

impl TryParse for GetSelectedExtensionEventsReply

§

impl TryParse for GrabDeviceReply

§

impl TryParse for GrabModifierInfo

§

impl TryParse for GroupInfo

§

impl TryParse for HierarchyChange

§

impl TryParse for HierarchyChangeDataAddMaster

§

impl TryParse for HierarchyChangeDataAttachSlave

§

impl TryParse for HierarchyChangeDataDetachSlave

§

impl TryParse for HierarchyChangeDataRemoveMaster

§

impl TryParse for HierarchyEvent

§

impl TryParse for HierarchyInfo

§

impl TryParse for InputClassInfo

§

impl TryParse for InputInfo

§

impl TryParse for InputInfoInfoButton

§

impl TryParse for InputInfoInfoKey

§

impl TryParse for InputInfoInfoValuator

§

impl TryParse for InputState

§

impl TryParse for InputStateDataButton

§

impl TryParse for InputStateDataKey

§

impl TryParse for InputStateDataValuator

§

impl TryParse for IntegerFeedbackCtl

§

impl TryParse for IntegerFeedbackState

§

impl TryParse for KbdFeedbackCtl

§

impl TryParse for KbdFeedbackState

§

impl TryParse for KeyClass

§

impl TryParse for KeyInfo

§

impl TryParse for x11rb::protocol::xinput::KeyPressEvent

§

impl TryParse for KeyState

§

impl TryParse for LedFeedbackCtl

§

impl TryParse for LedFeedbackState

§

impl TryParse for ListDevicePropertiesReply

§

impl TryParse for ListInputDevicesReply

§

impl TryParse for ModifierInfo

§

impl TryParse for OpenDeviceReply

§

impl TryParse for PropertyEvent

§

impl TryParse for PtrFeedbackCtl

§

impl TryParse for PtrFeedbackState

§

impl TryParse for QueryDeviceStateReply

§

impl TryParse for RawButtonPressEvent

§

impl TryParse for RawKeyPressEvent

§

impl TryParse for RawTouchBeginEvent

§

impl TryParse for RemoveMaster

§

impl TryParse for ScrollClass

§

impl TryParse for SetDeviceButtonMappingReply

§

impl TryParse for SetDeviceModeReply

§

impl TryParse for SetDeviceModifierMappingReply

§

impl TryParse for SetDeviceValuatorsReply

§

impl TryParse for StringFeedbackCtl

§

impl TryParse for StringFeedbackState

§

impl TryParse for TouchBeginEvent

§

impl TryParse for TouchClass

§

impl TryParse for TouchOwnershipEvent

§

impl TryParse for ValuatorClass

§

impl TryParse for ValuatorInfo

§

impl TryParse for ValuatorState

§

impl TryParse for XIDeviceInfo

§

impl TryParse for XIGetClientPointerReply

§

impl TryParse for XIGetFocusReply

§

impl TryParse for XIGetPropertyReply

§

impl TryParse for XIGetSelectedEventsReply

§

impl TryParse for XIGrabDeviceReply

§

impl TryParse for XIListPropertiesReply

§

impl TryParse for XIPassiveGrabDeviceReply

§

impl TryParse for XIQueryDeviceReply

§

impl TryParse for XIQueryPointerReply

§

impl TryParse for XIQueryVersionReply

§

impl TryParse for AccessXNotifyEvent

§

impl TryParse for Action

§

impl TryParse for ActionMessageEvent

§

impl TryParse for Behavior

§

impl TryParse for BellNotifyEvent

§

impl TryParse for CommonBehavior

§

impl TryParse for CompatMapNotifyEvent

§

impl TryParse for ControlsNotifyEvent

§

impl TryParse for CountedString16

§

impl TryParse for DefaultBehavior

§

impl TryParse for DeviceLedInfo

§

impl TryParse for ExtensionDeviceNotifyEvent

§

impl TryParse for GetCompatMapReply

§

impl TryParse for GetControlsReply

§

impl TryParse for GetDeviceInfoReply

§

impl TryParse for GetIndicatorMapReply

§

impl TryParse for GetIndicatorStateReply

§

impl TryParse for GetKbdByNameRepliesCompatMap

§

impl TryParse for GetKbdByNameRepliesGeometry

§

impl TryParse for GetKbdByNameRepliesIndicatorMaps

§

impl TryParse for GetKbdByNameRepliesKeyNames

§

impl TryParse for GetKbdByNameRepliesTypes

§

impl TryParse for GetKbdByNameReply

§

impl TryParse for GetMapReply

§

impl TryParse for GetNamedIndicatorReply

§

impl TryParse for GetNamesReply

§

impl TryParse for GetStateReply

§

impl TryParse for IndicatorMap

§

impl TryParse for IndicatorMapNotifyEvent

§

impl TryParse for IndicatorStateNotifyEvent

§

impl TryParse for KTMapEntry

§

impl TryParse for KTSetMapEntry

§

impl TryParse for Key

§

impl TryParse for KeyAlias

§

impl TryParse for KeyModMap

§

impl TryParse for KeyName

§

impl TryParse for KeySymMap

§

impl TryParse for KeyType

§

impl TryParse for KeyVModMap

§

impl TryParse for ListComponentsReply

§

impl TryParse for Listing

§

impl TryParse for x11rb::protocol::xkb::MapNotifyEvent

§

impl TryParse for ModDef

§

impl TryParse for NamesNotifyEvent

§

impl TryParse for NewKeyboardNotifyEvent

§

impl TryParse for Outline

§

impl TryParse for Overlay

§

impl TryParse for OverlayBehavior

§

impl TryParse for OverlayKey

§

impl TryParse for OverlayRow

§

impl TryParse for PerClientFlagsReply

§

impl TryParse for RadioGroupBehavior

§

impl TryParse for Row

§

impl TryParse for SAActionMessage

§

impl TryParse for SADeviceBtn

§

impl TryParse for SADeviceValuator

§

impl TryParse for SAIsoLock

§

impl TryParse for SALockDeviceBtn

§

impl TryParse for SALockPtrBtn

§

impl TryParse for SAMovePtr

§

impl TryParse for SANoAction

§

impl TryParse for SAPtrBtn

§

impl TryParse for SARedirectKey

§

impl TryParse for SASetControls

§

impl TryParse for SASetGroup

§

impl TryParse for SASetMods

§

impl TryParse for SASetPtrDflt

§

impl TryParse for SASwitchScreen

§

impl TryParse for SATerminate

§

impl TryParse for SIAction

§

impl TryParse for SelectEventsAuxAccessXNotify

§

impl TryParse for SelectEventsAuxActionMessage

§

impl TryParse for SelectEventsAuxBellNotify

§

impl TryParse for SelectEventsAuxCompatMapNotify

§

impl TryParse for SelectEventsAuxControlsNotify

§

impl TryParse for SelectEventsAuxExtensionDeviceNotify

§

impl TryParse for SelectEventsAuxIndicatorMapNotify

§

impl TryParse for SelectEventsAuxIndicatorStateNotify

§

impl TryParse for SelectEventsAuxNamesNotify

§

impl TryParse for SelectEventsAuxNewKeyboardNotify

§

impl TryParse for SelectEventsAuxStateNotify

§

impl TryParse for SetBehavior

§

impl TryParse for SetDebuggingFlagsReply

§

impl TryParse for SetExplicit

§

impl TryParse for SetKeyType

§

impl TryParse for Shape

§

impl TryParse for StateNotifyEvent

§

impl TryParse for SymInterpret

§

impl TryParse for UseExtensionReply

§

impl TryParse for AllocColorCellsReply

§

impl TryParse for AllocColorPlanesReply

§

impl TryParse for AllocColorReply

§

impl TryParse for AllocNamedColorReply

§

impl TryParse for Arc

§

impl TryParse for x11rb::protocol::xproto::ButtonPressEvent

§

impl TryParse for Char2b

§

impl TryParse for Charinfo

§

impl TryParse for CirculateNotifyEvent

§

impl TryParse for ClientMessageData

§

impl TryParse for ClientMessageEvent

§

impl TryParse for Coloritem

§

impl TryParse for ColormapNotifyEvent

§

impl TryParse for x11rb::protocol::xproto::ConfigureNotifyEvent

§

impl TryParse for ConfigureRequestEvent

§

impl TryParse for CreateNotifyEvent

§

impl TryParse for Depth

§

impl TryParse for DestroyNotifyEvent

§

impl TryParse for EnterNotifyEvent

§

impl TryParse for ExposeEvent

§

impl TryParse for FocusInEvent

§

impl TryParse for Fontprop

§

impl TryParse for Format

§

impl TryParse for GeGenericEvent

§

impl TryParse for GetAtomNameReply

§

impl TryParse for GetFontPathReply

§

impl TryParse for GetGeometryReply

§

impl TryParse for GetImageReply

§

impl TryParse for GetInputFocusReply

§

impl TryParse for GetKeyboardControlReply

§

impl TryParse for GetKeyboardMappingReply

§

impl TryParse for GetModifierMappingReply

§

impl TryParse for GetMotionEventsReply

§

impl TryParse for GetPointerControlReply

§

impl TryParse for GetPointerMappingReply

§

impl TryParse for GetPropertyReply

§

impl TryParse for GetScreenSaverReply

§

impl TryParse for GetSelectionOwnerReply

§

impl TryParse for GetWindowAttributesReply

§

impl TryParse for GrabKeyboardReply

§

impl TryParse for GrabPointerReply

§

impl TryParse for GraphicsExposureEvent

§

impl TryParse for GravityNotifyEvent

§

impl TryParse for Host

§

impl TryParse for InternAtomReply

§

impl TryParse for x11rb::protocol::xproto::KeyPressEvent

§

impl TryParse for KeymapNotifyEvent

§

impl TryParse for ListExtensionsReply

§

impl TryParse for ListFontsReply

§

impl TryParse for ListFontsWithInfoReply

§

impl TryParse for ListHostsReply

§

impl TryParse for ListInstalledColormapsReply

§

impl TryParse for ListPropertiesReply

§

impl TryParse for LookupColorReply

§

impl TryParse for x11rb::protocol::xproto::MapNotifyEvent

§

impl TryParse for MapRequestEvent

§

impl TryParse for MappingNotifyEvent

§

impl TryParse for MotionNotifyEvent

§

impl TryParse for NoExposureEvent

§

impl TryParse for Point

§

impl TryParse for PropertyNotifyEvent

§

impl TryParse for QueryBestSizeReply

§

impl TryParse for QueryColorsReply

§

impl TryParse for QueryExtensionReply

§

impl TryParse for QueryFontReply

§

impl TryParse for QueryKeymapReply

§

impl TryParse for QueryPointerReply

§

impl TryParse for QueryTextExtentsReply

§

impl TryParse for QueryTreeReply

§

impl TryParse for Rectangle

§

impl TryParse for ReparentNotifyEvent

§

impl TryParse for ResizeRequestEvent

§

impl TryParse for Rgb

§

impl TryParse for Screen

§

impl TryParse for Segment

§

impl TryParse for SelectionClearEvent

§

impl TryParse for x11rb::protocol::xproto::SelectionNotifyEvent

§

impl TryParse for SelectionRequestEvent

§

impl TryParse for SetModifierMappingReply

§

impl TryParse for SetPointerMappingReply

§

impl TryParse for Setup

§

impl TryParse for SetupAuthenticate

§

impl TryParse for SetupFailed

§

impl TryParse for SetupRequest

§

impl TryParse for Str

§

impl TryParse for Timecoord

§

impl TryParse for TranslateCoordinatesReply

§

impl TryParse for UnmapNotifyEvent

§

impl TryParse for VisibilityNotifyEvent

§

impl TryParse for Visualtype