|   | 
- Method resolution order:
 
- FileInfo
 
- builtins.tuple
 
- builtins.object
 
 
 
Methods defined here: 
- __eq__(self, other: object) -> bool
 - Determine if two file info's are equivalent.
  
- __getnewargs__(self)
 - Return self as a plain tuple.  Used by copy and pickle.
  
- __hash__(self) -> int
 - Get a hash for this file info based on the file name.
  
- __repr__(self)
 - Return a nicely formatted representation string
  
- _asdict(self)
 - Return a new dict which maps field names to their values.
  
- _replace(self, /, **kwds)
 - Return a new FileInfo object replacing specified fields with new values
  
- poll(self, check_contents: bool = True) -> Tuple[Optional[vcorelib.paths.info.FileChangeEvent], Optional[ForwardRef('FileInfo')]]
 - Determine if this file is in a new state or not.
  
- same(self, other: 'FileInfo') -> bool
 - Check if two file info contents match.
  
- to_json(self, data: Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]] = None) -> Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]]
 - Get JSON data for this instance.
  
 
Class methods defined here: 
- _make(iterable) from builtins.type
 - Make a new FileInfo object from a sequence or iterable
  
 
Static methods defined here: 
- __new__(_cls, path: pathlib.Path, size: int, md5_hex: str, modified_ns: int)
 - Create new instance of FileInfo(path, size, md5_hex, modified_ns)
  
- from_file(path: Union[pathlib.Path, str, NoneType], stats: os.stat_result = None) -> 'FileInfo'
 - Create file info from a file.
  
- from_json(data: Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]], force: bool = False) -> Dict[pathlib.Path, ForwardRef('FileInfo')]
 - Create file info from JSON data.
  
 
Data descriptors defined here: 
- path
 
- Alias for field number 0
 
 
- size
 
- Alias for field number 1
 
 
- md5_hex
 
- Alias for field number 2
 
 
- modified_ns
 
- Alias for field number 3
 
 
 
Data and other attributes defined here: 
- __annotations__ = {'md5_hex': <class 'str'>, 'modified_ns': <class 'int'>, 'path': <class 'pathlib.Path'>, 'size': <class 'int'>}
  
- __match_args__ = ('path', 'size', 'md5_hex', 'modified_ns')
  
- __orig_bases__ = (<function NamedTuple>,)
  
- _field_defaults = {}
  
- _fields = ('path', 'size', 'md5_hex', 'modified_ns')
  
 
Methods inherited from builtins.tuple: 
- __add__(self, value, /)
 - Return self+value.
  
- __contains__(self, key, /)
 - Return bool(key in self).
  
- __ge__(self, value, /)
 - Return self>=value.
  
- __getattribute__(self, name, /)
 - Return getattr(self, name).
  
- __getitem__(self, key, /)
 - Return self[key].
  
- __gt__(self, value, /)
 - Return self>value.
  
- __iter__(self, /)
 - Implement iter(self).
  
- __le__(self, value, /)
 - Return self<=value.
  
- __len__(self, /)
 - Return len(self).
  
- __lt__(self, value, /)
 - Return self<value.
  
- __mul__(self, value, /)
 - Return self*value.
  
- __ne__(self, value, /)
 - Return self!=value.
  
- __rmul__(self, value, /)
 - Return value*self.
  
- count(self, value, /)
 - Return number of occurrences of value.
  
- index(self, value, start=0, stop=9223372036854775807, /)
 - Return first index of value.
 
  
Raises ValueError if the value is not present.  
 
Class methods inherited from builtins.tuple: 
- __class_getitem__(...) from builtins.type
 - See PEP 585
  
 |