var searchIndex = {}; searchIndex["device_tree"] = {"doc":"Parse flattened linux device trees","items":[[3,"DeviceTree","device_tree","Device tree structure.",null,null],[12,"version","","Version, as indicated by version header",0,null],[12,"boot_cpuid_phys","","The number of the CPU the system boots from",0,null],[12,"reserved","","A list of tuples of `(offset, length)`, indicating reserved memory",0,null],[12,"root","","The root node.",0,null],[3,"Node","","A single node in the device tree.",null,null],[12,"name","","The name of the node, as it appears in the node path.",1,null],[12,"props","","A list of node properties, `(key, value)`.",1,null],[12,"children","","Child nodes of this node.",1,null],[4,"DeviceTreeError","","An error describe parsing problems when creating device trees.",null,null],[13,"InvalidMagicNumber","","The magic number `MAGIC_NUMBER` was not found at the start of the\nstructure.",2,null],[13,"SizeMismatch","","An offset or size found inside the device tree is outside of what was\nsupplied to `load()`.",2,null],[13,"SliceReadError","","Failed to read data from slice.",2,null],[13,"ParseError","","The data format was not as expected at the given position",2,null],[13,"Utf8Error","","While trying to convert a string that was supposed to be ASCII, invalid\nutf8 sequences were encounted",2,null],[13,"VersionNotSupported","","The device tree version is not supported by this library.",2,null],[0,"util","","",null,null],[0,"convert","device_tree::util","Traits for conversions between types.",null,null],[8,"AsRef","device_tree::util::convert","A cheap, reference-to-reference conversion.",null,null],[10,"as_ref","","Performs the conversion.",3,null],[8,"AsMut","","A cheap, mutable reference-to-mutable reference conversion.",null,null],[10,"as_mut","","Performs the conversion.",4,null],[8,"Into","","A conversion that consumes `self`, which may or may not be expensive.",null,null],[10,"into","","Performs the conversion.",5,null],[8,"From","","Construct `Self` via a conversion.",null,null],[10,"from","","Performs the conversion.",6,{"inputs":[{"name":"t"}],"output":{"name":"self"}}],[8,"TryInto","","An attempted conversion that consumes `self`, which may or may not be expensive.",null,null],[16,"Err","","The type returned in the event of a conversion error.",7,null],[10,"try_into","","Performs the conversion.",7,null],[8,"TryFrom","","Attempt to construct `Self` via a conversion.",null,null],[16,"Err","","The type returned in the event of a conversion error.",8,null],[10,"try_from","","Performs the conversion.",8,{"inputs":[{"name":"t"}],"output":{"name":"result"}}],[0,"fmt","device_tree::util","Utilities for formatting and printing strings.",null,null],[4,"Alignment","device_tree::util::fmt","Possible alignments returned by `Formatter::align`",null,null],[13,"Left","","Indication that contents should be left-aligned.",9,null],[13,"Right","","Indication that contents should be right-aligned.",9,null],[13,"Center","","Indication that contents should be center-aligned.",9,null],[13,"Unknown","","No alignment was requested.",9,null],[6,"Result","","",null,null],[3,"Error","","The error type which is returned from formatting a message into a stream.",null,null],[8,"Write","","A collection of methods that are required to format a message into a stream.",null,null],[10,"write_str","","Writes a slice of bytes into this writer, returning whether the write\nsucceeded.",10,null],[11,"write_char","","Writes a `char` into this writer, returning whether the write succeeded.",10,null],[11,"write_fmt","","Glue for usage of the `write!` macro with implementors of this trait.",10,null],[3,"Formatter","","A struct to represent both where to emit formatting strings to and how they\nshould be formatted. A mutable version of this is passed to all formatting\ntraits.",null,null],[3,"Arguments","","This structure represents a safely precompiled version of a format string\nand its arguments. This cannot be generated at runtime because it cannot\nsafely be done so, so no constructors are given and the fields are private\nto prevent modification.",null,null],[8,"Debug","","Format trait for the `?` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",11,null],[8,"Display","","Format trait for an empty format, `{}`.",null,null],[10,"fmt","","Formats the value using the given formatter.",12,null],[8,"Octal","","Format trait for the `o` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",13,null],[8,"Binary","","Format trait for the `b` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",14,null],[8,"LowerHex","","Format trait for the `x` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",15,null],[8,"UpperHex","","Format trait for the `X` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",16,null],[8,"Pointer","","Format trait for the `p` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",17,null],[8,"LowerExp","","Format trait for the `e` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",18,null],[8,"UpperExp","","Format trait for the `E` character.",null,null],[10,"fmt","","Formats the value using the given formatter.",19,null],[5,"write","","The `write` function takes an output stream, a precompiled format string,\nand a list of arguments. The arguments will be formatted according to the\nspecified format string into the output stream provided.",null,{"inputs":[{"name":"write"},{"name":"arguments"}],"output":{"name":"result"}}],[3,"DebugMap","","A struct to help with `fmt::Debug` implementations.",null,null],[3,"DebugSet","","A struct to help with `fmt::Debug` implementations.",null,null],[3,"DebugTuple","","A struct to help with `fmt::Debug` implementations.",null,null],[3,"DebugList","","A struct to help with `fmt::Debug` implementations.",null,null],[3,"DebugStruct","","A struct to help with `fmt::Debug` implementations.",null,null],[0,"option","device_tree::util","Optional values.",null,null],[4,"Option","device_tree::util::option","The `Option` type. See [the module level documentation](index.html) for more.",null,null],[13,"None","","No value",20,null],[13,"Some","","Some value `T`",20,null],[3,"Iter","","An iterator over a reference of the contained item in an Option.",null,null],[3,"IterMut","","An iterator over a mutable reference of the contained item in an Option.",null,null],[3,"IntoIter","","An iterator over the item contained inside an Option.",null,null],[0,"result","device_tree::util","Error handling with the `Result` type.",null,null],[4,"Result","device_tree::util::result","`Result` is a type that represents either success (`Ok`) or failure (`Err`).",null,null],[13,"Ok","","Contains the success value",21,null],[13,"Err","","Contains the error value",21,null],[3,"Iter","","An iterator over a reference to the `Ok` variant of a `Result`.",null,null],[3,"IterMut","","An iterator over a mutable reference to the `Ok` variant of a `Result`.",null,null],[3,"IntoIter","","An iterator over the value in a `Ok` variant of a `Result`.",null,null],[0,"str","device_tree::util","String manipulation",null,null],[0,"pattern","device_tree::util::str","The string Pattern API.",null,null],[8,"Pattern","device_tree::util::str::pattern","A string pattern.",null,null],[16,"Searcher","","Associated searcher for this pattern",22,null],[10,"into_searcher","","Constructs the associated searcher from\n`self` and the `haystack` to search in.",22,null],[11,"is_contained_in","","Checks whether the pattern matches anywhere in the haystack",22,null],[11,"is_prefix_of","","Checks whether the pattern matches at the front of the haystack",22,null],[11,"is_suffix_of","","Checks whether the pattern matches at the back of the haystack",22,null],[4,"SearchStep","","Result of calling `Searcher::next()` or `ReverseSearcher::next_back()`.",null,null],[13,"Match","","Expresses that a match of the pattern has been found at\n`haystack[a..b]`.",23,null],[13,"Reject","","Expresses that `haystack[a..b]` has been rejected as a possible match\nof the pattern.",23,null],[13,"Done","","Expresses that every byte of the haystack has been visted, ending\nthe iteration.",23,null],[8,"Searcher","","A searcher for a string pattern.",null,null],[10,"haystack","","Getter for the underlaying string to be searched in",24,null],[10,"next","","Performs the next search step starting from the front.",24,null],[11,"next_match","","Find the next `Match` result. See `next()`",24,null],[11,"next_reject","","Find the next `Reject` result. See `next()`",24,null],[8,"ReverseSearcher","","A reverse searcher for a string pattern.",null,null],[10,"next_back","","Performs the next search step starting from the back.",25,null],[11,"next_match_back","","Find the next `Match` result. See `next_back()`",25,null],[11,"next_reject_back","","Find the next `Reject` result. See `next_back()`",25,null],[8,"DoubleEndedSearcher","","A marker trait to express that a `ReverseSearcher`\ncan be used for a `DoubleEndedIterator` implementation.",null,null],[3,"CharSearcher","","Associated type for `<char as Pattern<'a>>::Searcher`.",null,null],[3,"CharSliceSearcher","","Associated type for `<&[char] as Pattern<'a>>::Searcher`.",null,null],[3,"CharPredicateSearcher","","Associated type for `<F as Pattern<'a>>::Searcher`.",null,null],[3,"StrSearcher","","Associated type for `<&str as Pattern<'a>>::Searcher`.",null,null],[8,"FromStr","device_tree::util::str","A trait to abstract the idea of creating a new instance of a type from a\nstring.",null,null],[16,"Err","","The associated error which can be returned from parsing.",26,null],[10,"from_str","","Parses a string `s` to return a value of this type.",26,{"inputs":[{"name":"str"}],"output":{"name":"result"}}],[3,"ParseBoolError","","An error returned when parsing a `bool` from a string fails.",null,null],[3,"Utf8Error","","Errors which can occur when attempting to interpret a sequence of `u8`\nas a string.",null,null],[5,"from_utf8","","Converts a slice of bytes to a string slice.",null,null],[5,"from_utf8_unchecked","","Converts a slice of bytes to a string slice without checking\nthat the string contains valid UTF-8.",null,null],[3,"Chars","","Iterator for the char (representing *Unicode Scalar Values*) of a string",null,null],[5,"next_code_point","","Reads the next code point out of a byte iterator (assuming a\nUTF-8-like encoding).",null,{"inputs":[{"name":"i"}],"output":{"name":"option"}}],[3,"CharIndices","","Iterator for a string's characters and their byte offsets.",null,null],[3,"Bytes","","External iterator for a string's bytes.\nUse with the `std::iter` module.",null,null],[3,"Split","","Created with the method [`split()`].",null,null],[3,"RSplit","","Created with the method [`rsplit()`].",null,null],[3,"SplitTerminator","","Created with the method [`split_terminator()`].",null,null],[3,"RSplitTerminator","","Created with the method [`rsplit_terminator()`].",null,null],[3,"SplitN","","Created with the method [`splitn()`].",null,null],[3,"RSplitN","","Created with the method [`rsplitn()`].",null,null],[3,"MatchIndices","","Created with the method [`match_indices()`].",null,null],[3,"RMatchIndices","","Created with the method [`rmatch_indices()`].",null,null],[3,"Matches","","Created with the method [`matches()`].",null,null],[3,"RMatches","","Created with the method [`rmatches()`].",null,null],[3,"Lines","","Created with the method [`lines()`].",null,null],[3,"LinesAny","","Created with the method [`lines_any()`].",null,null],[4,"SliceReadError","device_tree::util","",null,null],[13,"UnexpectedEndOfInput","","",27,null],[5,"align","","",null,{"inputs":[{"name":"usize"},{"name":"usize"}],"output":{"name":"usize"}}],[6,"SliceReadResult","","",null,null],[8,"SliceRead","","",null,null],[10,"read_be_u32","","",28,null],[10,"read_be_u64","","",28,null],[10,"read_bstring0","","",28,null],[10,"subslice","","",28,null],[11,"fmt","","",27,null],[11,"fmt","device_tree","",2,null],[11,"fmt","","",0,null],[11,"fmt","","",1,null],[11,"from","","",2,{"inputs":[{"name":"slicereaderror"}],"output":{"name":"devicetreeerror"}}],[11,"from","","",2,{"inputs":[{"name":"utf8error"}],"output":{"name":"devicetreeerror"}}],[11,"load","","",0,null],[11,"hash","device_tree::util::option","",20,null],[11,"fmt","","",20,null],[11,"cmp","","",20,null],[11,"partial_cmp","","",20,null],[11,"lt","","",20,null],[11,"le","","",20,null],[11,"gt","","",20,null],[11,"ge","","",20,null],[11,"eq","","",20,null],[11,"ne","","",20,null],[11,"clone","","",20,null],[11,"is_some","","Returns `true` if the option is a `Some` value",20,null],[11,"is_none","","Returns `true` if the option is a `None` value",20,null],[11,"as_ref","","Converts from `Option<T>` to `Option<&T>`",20,null],[11,"as_mut","","Converts from `Option<T>` to `Option<&mut T>`",20,null],[11,"expect","","Unwraps an option, yielding the content of a `Some`.",20,null],[11,"unwrap","","Moves the value `v` out of the `Option<T>` if it is `Some(v)`.",20,null],[11,"unwrap_or","","Returns the contained value or a default.",20,null],[11,"unwrap_or_else","","Returns the contained value or computes it from a closure.",20,null],[11,"map","","Maps an `Option<T>` to `Option<U>` by applying a function to a contained value",20,null],[11,"map_or","","Applies a function to the contained value (if any),\nor returns a `default` (if not).",20,null],[11,"map_or_else","","Applies a function to the contained value (if any),\nor computes a `default` (if not).",20,null],[11,"ok_or","","Transforms the `Option<T>` into a `Result<T, E>`, mapping `Some(v)` to\n`Ok(v)` and `None` to `Err(err)`.",20,null],[11,"ok_or_else","","Transforms the `Option<T>` into a `Result<T, E>`, mapping `Some(v)` to\n`Ok(v)` and `None` to `Err(err())`.",20,null],[11,"iter","","Returns an iterator over the possibly contained value.",20,null],[11,"iter_mut","","Returns a mutable iterator over the possibly contained value.",20,null],[11,"and","","Returns `None` if the option is `None`, otherwise returns `optb`.",20,null],[11,"and_then","","Returns `None` if the option is `None`, otherwise calls `f` with the\nwrapped value and returns the result.",20,null],[11,"or","","Returns the option if it contains a value, otherwise returns `optb`.",20,null],[11,"or_else","","Returns the option if it contains a value, otherwise calls `f` and\nreturns the result.",20,null],[11,"take","","Takes the value out of the option, leaving a `None` in its place.",20,null],[11,"cloned","","Maps an `Option<&T>` to an `Option<T>` by cloning the contents of the\noption.",20,null],[11,"unwrap_or_default","","Returns the contained value or a default",20,null],[11,"default","","",20,{"inputs":[],"output":{"name":"option"}}],[11,"into_iter","","Returns a consuming iterator over the possibly contained value.",20,null],[11,"from","","",20,{"inputs":[{"name":"t"}],"output":{"name":"option"}}],[11,"fmt","","",29,null],[11,"next","","",29,null],[11,"size_hint","","",29,null],[11,"next_back","","",29,null],[11,"clone","","",29,null],[11,"fmt","","",30,null],[11,"next","","",30,null],[11,"size_hint","","",30,null],[11,"next_back","","",30,null],[11,"fmt","","",31,null],[11,"clone","","",31,null],[11,"next","","",31,null],[11,"size_hint","","",31,null],[11,"next_back","","",31,null],[11,"from_iter","","Takes each element in the `Iterator`: if it is `None`, no further\nelements are taken, and the `None` is returned. Should no `None` occur, a\ncontainer with the values of each `Option` is returned.",20,{"inputs":[{"name":"i"}],"output":{"name":"option"}}],[11,"hash","device_tree::util::result","",21,null],[11,"fmt","","",21,null],[11,"cmp","","",21,null],[11,"partial_cmp","","",21,null],[11,"lt","","",21,null],[11,"le","","",21,null],[11,"gt","","",21,null],[11,"ge","","",21,null],[11,"eq","","",21,null],[11,"ne","","",21,null],[11,"clone","","",21,null],[11,"is_ok","","Returns true if the result is `Ok`",21,null],[11,"is_err","","Returns true if the result is `Err`",21,null],[11,"ok","","Converts from `Result<T, E>` to `Option<T>`",21,null],[11,"err","","Converts from `Result<T, E>` to `Option<E>`",21,null],[11,"as_ref","","Converts from `Result<T, E>` to `Result<&T, &E>`",21,null],[11,"as_mut","","Converts from `Result<T, E>` to `Result<&mut T, &mut E>`",21,null],[11,"map","","Maps a `Result<T, E>` to `Result<U, E>` by applying a function to a\ncontained `Ok` value, leaving an `Err` value untouched.",21,null],[11,"map_err","","Maps a `Result<T, E>` to `Result<T, F>` by applying a function to a\ncontained `Err` value, leaving an `Ok` value untouched.",21,null],[11,"iter","","Returns an iterator over the possibly contained value.",21,null],[11,"iter_mut","","Returns a mutable iterator over the possibly contained value.",21,null],[11,"and","","Returns `res` if the result is `Ok`, otherwise returns the `Err` value of `self`.",21,null],[11,"and_then","","Calls `op` if the result is `Ok`, otherwise returns the `Err` value of `self`.",21,null],[11,"or","","Returns `res` if the result is `Err`, otherwise returns the `Ok` value of `self`.",21,null],[11,"or_else","","Calls `op` if the result is `Err`, otherwise returns the `Ok` value of `self`.",21,null],[11,"unwrap_or","","Unwraps a result, yielding the content of an `Ok`.\nElse it returns `optb`.",21,null],[11,"unwrap_or_else","","Unwraps a result, yielding the content of an `Ok`.\nIf the value is an `Err` then it calls `op` with its value.",21,null],[11,"unwrap","","Unwraps a result, yielding the content of an `Ok`.",21,null],[11,"expect","","Unwraps a result, yielding the content of an `Ok`.",21,null],[11,"unwrap_err","","Unwraps a result, yielding the content of an `Err`.",21,null],[11,"into_iter","","Returns a consuming iterator over the possibly contained value.",21,null],[11,"fmt","","",32,null],[11,"next","","",32,null],[11,"size_hint","","",32,null],[11,"next_back","","",32,null],[11,"clone","","",32,null],[11,"fmt","","",33,null],[11,"next","","",33,null],[11,"size_hint","","",33,null],[11,"next_back","","",33,null],[11,"fmt","","",34,null],[11,"next","","",34,null],[11,"size_hint","","",34,null],[11,"next_back","","",34,null],[11,"from_iter","","Takes each element in the `Iterator`: if it is an `Err`, no further\nelements are taken, and the `Err` is returned. Should no `Err` occur, a\ncontainer with the values of each `Result` is returned.",21,{"inputs":[{"name":"i"}],"output":{"name":"result"}}],[11,"fmt","device_tree::util::str::pattern","",23,null],[11,"eq","","",23,null],[11,"ne","","",23,null],[11,"clone","","",23,null],[11,"fmt","","",35,null],[11,"clone","","",35,null],[11,"haystack","","",35,null],[11,"next","","",35,null],[11,"next_match","","",35,null],[11,"next_reject","","",35,null],[11,"next_back","","",35,null],[11,"next_match_back","","",35,null],[11,"next_reject_back","","",35,null],[11,"fmt","","",36,null],[11,"clone","","",36,null],[11,"haystack","","",36,null],[11,"next","","",36,null],[11,"next_match","","",36,null],[11,"next_reject","","",36,null],[11,"next_back","","",36,null],[11,"next_match_back","","",36,null],[11,"next_reject_back","","",36,null],[11,"clone","","",37,null],[11,"fmt","","",37,null],[11,"haystack","","",37,null],[11,"next","","",37,null],[11,"next_match","","",37,null],[11,"next_reject","","",37,null],[11,"next_back","","",37,null],[11,"next_match_back","","",37,null],[11,"next_reject_back","","",37,null],[11,"fmt","","",38,null],[11,"clone","","",38,null],[11,"haystack","","",38,null],[11,"next","","",38,null],[11,"next_match","","",38,null],[11,"next_back","","",38,null],[11,"next_match_back","","",38,null],[11,"eq","device_tree::util::str","",39,null],[11,"ne","","",39,null],[11,"clone","","",39,null],[11,"fmt","","",39,null],[11,"fmt","","",39,null],[11,"fmt","","",40,null],[11,"clone","","",40,null],[11,"eq","","",40,null],[11,"ne","","",40,null],[11,"valid_up_to","","Returns the index in the given string up to which valid UTF-8 was\nverified.",40,null],[11,"fmt","","",40,null],[11,"fmt","","",41,null],[11,"clone","","",41,null],[11,"next","","",41,null],[11,"size_hint","","",41,null],[11,"next_back","","",41,null],[11,"as_str","","View the underlying data as a subslice of the original data.",41,null],[11,"fmt","","",42,null],[11,"clone","","",42,null],[11,"next","","",42,null],[11,"size_hint","","",42,null],[11,"next_back","","",42,null],[11,"as_str","","View the underlying data as a subslice of the original data.",42,null],[11,"fmt","","",43,null],[11,"clone","","",43,null],[11,"next","","",43,null],[11,"size_hint","","",43,null],[11,"count","","",43,null],[11,"last","","",43,null],[11,"nth","","",43,null],[11,"next_back","","",43,null],[11,"len","","",43,null],[11,"fmt","","",44,null],[11,"next","","",44,null],[11,"clone","","",44,null],[11,"fmt","","",45,null],[11,"next","","",45,null],[11,"clone","","",45,null],[11,"next_back","","",44,null],[11,"next_back","","",45,null],[11,"fmt","","",46,null],[11,"next","","",46,null],[11,"clone","","",46,null],[11,"fmt","","",47,null],[11,"next","","",47,null],[11,"clone","","",47,null],[11,"next_back","","",46,null],[11,"next_back","","",47,null],[11,"fmt","","",48,null],[11,"next","","",48,null],[11,"clone","","",48,null],[11,"fmt","","",49,null],[11,"next","","",49,null],[11,"clone","","",49,null],[11,"fmt","","",50,null],[11,"next","","",50,null],[11,"clone","","",50,null],[11,"fmt","","",51,null],[11,"next","","",51,null],[11,"clone","","",51,null],[11,"next_back","","",50,null],[11,"next_back","","",51,null],[11,"fmt","","",52,null],[11,"next","","",52,null],[11,"clone","","",52,null],[11,"fmt","","",53,null],[11,"next","","",53,null],[11,"clone","","",53,null],[11,"next_back","","",52,null],[11,"next_back","","",53,null],[11,"fmt","","",54,null],[11,"clone","","",54,null],[11,"next","","",54,null],[11,"size_hint","","",54,null],[11,"next_back","","",54,null],[11,"fmt","","",55,null],[11,"clone","","",55,null],[11,"next","","",55,null],[11,"size_hint","","",55,null],[11,"next_back","","",55,null],[11,"fmt","device_tree::util::fmt","",9,null],[11,"field","","Adds a new field to the generated struct output.",56,null],[11,"finish","","Finishes output and returns any error encountered.",56,null],[11,"field","","Adds a new field to the generated tuple struct output.",57,null],[11,"finish","","Finishes output and returns any error encountered.",57,null],[11,"entry","","Adds a new entry to the set output.",58,null],[11,"entries","","Adds the contents of an iterator of entries to the set output.",58,null],[11,"finish","","Finishes output and returns any error encountered.",58,null],[11,"entry","","Adds a new entry to the list output.",59,null],[11,"entries","","Adds the contents of an iterator of entries to the list output.",59,null],[11,"finish","","Finishes output and returns any error encountered.",59,null],[11,"entry","","Adds a new entry to the map output.",60,null],[11,"entries","","Adds the contents of an iterator of entries to the map output.",60,null],[11,"finish","","Finishes output and returns any error encountered.",60,null],[11,"partial_cmp","","",61,null],[11,"eq","","",61,null],[11,"cmp","","",61,null],[11,"hash","","",61,null],[11,"default","","",61,{"inputs":[],"output":{"name":"error"}}],[11,"fmt","","",61,null],[11,"clone","","",61,null],[11,"clone","","",62,null],[11,"fmt","","",62,null],[11,"fmt","","",62,null],[11,"pad_integral","","Performs the correct padding for an integer which has already been\nemitted into a str. The str should *not* contain the sign for the\ninteger, that will be added by this method.",63,null],[11,"pad","","This function takes a string slice and emits it to the internal buffer\nafter applying the relevant formatting flags specified. The flags\nrecognized for generic strings are:",63,null],[11,"write_str","","Writes some data to the underlying buffer contained within this\nformatter.",63,null],[11,"write_fmt","","Writes some formatted information into this instance",63,null],[11,"flags","","Flags for formatting (packed version of rt::Flag)",63,null],[11,"fill","","Character used as 'fill' whenever there is alignment",63,null],[11,"align","","Flag indicating what form of alignment was requested",63,null],[11,"width","","Optionally specified integer width that the output should be",63,null],[11,"precision","","Optionally specified precision for numeric types",63,null],[11,"sign_plus","","Determines if the `+` flag was specified.",63,null],[11,"sign_minus","","Determines if the `-` flag was specified.",63,null],[11,"alternate","","Determines if the `#` flag was specified.",63,null],[11,"sign_aware_zero_pad","","Determines if the `0` flag was specified.",63,null],[11,"debug_struct","","Creates a `DebugStruct` builder designed to assist with creation of\n`fmt::Debug` implementations for structs.",63,null],[11,"debug_tuple","","Creates a `DebugTuple` builder designed to assist with creation of\n`fmt::Debug` implementations for tuple structs.",63,null],[11,"debug_list","","Creates a `DebugList` builder designed to assist with creation of\n`fmt::Debug` implementations for list-like structures.",63,null],[11,"debug_set","","Creates a `DebugSet` builder designed to assist with creation of\n`fmt::Debug` implementations for set-like structures.",63,null],[11,"debug_map","","Creates a `DebugMap` builder designed to assist with creation of\n`fmt::Debug` implementations for map-like structures.",63,null],[11,"write_str","","",63,null],[11,"write_char","","",63,null],[11,"write_fmt","","",63,null],[11,"fmt","","",61,null]],"paths":[[3,"DeviceTree"],[3,"Node"],[4,"DeviceTreeError"],[8,"AsRef"],[8,"AsMut"],[8,"Into"],[8,"From"],[8,"TryInto"],[8,"TryFrom"],[4,"Alignment"],[8,"Write"],[8,"Debug"],[8,"Display"],[8,"Octal"],[8,"Binary"],[8,"LowerHex"],[8,"UpperHex"],[8,"Pointer"],[8,"LowerExp"],[8,"UpperExp"],[4,"Option"],[4,"Result"],[8,"Pattern"],[4,"SearchStep"],[8,"Searcher"],[8,"ReverseSearcher"],[8,"FromStr"],[4,"SliceReadError"],[8,"SliceRead"],[3,"Iter"],[3,"IterMut"],[3,"IntoIter"],[3,"Iter"],[3,"IterMut"],[3,"IntoIter"],[3,"CharSearcher"],[3,"CharSliceSearcher"],[3,"CharPredicateSearcher"],[3,"StrSearcher"],[3,"ParseBoolError"],[3,"Utf8Error"],[3,"Chars"],[3,"CharIndices"],[3,"Bytes"],[3,"Split"],[3,"RSplit"],[3,"SplitTerminator"],[3,"RSplitTerminator"],[3,"SplitN"],[3,"RSplitN"],[3,"MatchIndices"],[3,"RMatchIndices"],[3,"Matches"],[3,"RMatches"],[3,"Lines"],[3,"LinesAny"],[3,"DebugStruct"],[3,"DebugTuple"],[3,"DebugSet"],[3,"DebugList"],[3,"DebugMap"],[3,"Error"],[3,"Arguments"],[3,"Formatter"]]}; initSearch(searchIndex);