= 1024" x-on:close-sidebar="sidebar=window.innerWidth >= 1024 && true">
ON THIS PAGE
package obus
-
obus
-
obus.hal
-
obus.network_manager
-
obus.notification
-
obus.ppx
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Restriction on strings used with D-Bus
There are a lot of restrictions for strings used in D-Bus. OBus only verifies strings when a message is sent or received
val error_message : error -> string
error_message error
returns a human-readable error message
Error projections
val typ : error -> string
val str : error -> string
val ofs : error -> int
val msg : error -> string
Validators
type validator = string -> error option
Tests if a string is correct.
- if it is, returns
None
- if not, returns
Some(ofs, msg)
exception Invalid_string of error
val assert_validate : validator -> string -> unit
Raises Invalid_string
if the given string failed to validate
Common strings
Type for common strings, restrictions are:
- a string must be encoded in valid UTF-8
- a string must not contains the null byte
val validate : validator
Validation function for common strings
ON THIS PAGE